mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 00:16:16 +00:00
Merge pull request #3959 from APriestman/fixFileTypeJitter
Fix jitter in file types tree caused by missing space
This commit is contained in:
commit
3da16f9989
@ -249,7 +249,7 @@ public final class FileTypes implements AutopsyVisitableItem {
|
|||||||
if (typesRoot.showCounts) {
|
if (typesRoot.showCounts) {
|
||||||
//only show "(counting...)" the first time, otherwise it is distracting.
|
//only show "(counting...)" the first time, otherwise it is distracting.
|
||||||
setDisplayName(getDisplayNameBase() + ((childCount < 0) ? Bundle.FileTypes_bgCounting_placeholder()
|
setDisplayName(getDisplayNameBase() + ((childCount < 0) ? Bundle.FileTypes_bgCounting_placeholder()
|
||||||
: ("(" + childCount + ")"))); //NON-NLS
|
: (" (" + childCount + ")"))); //NON-NLS
|
||||||
new SwingWorker<Long, Void>() {
|
new SwingWorker<Long, Void>() {
|
||||||
@Override
|
@Override
|
||||||
protected Long doInBackground() throws Exception {
|
protected Long doInBackground() throws Exception {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user