File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ This is valid:\
10
10
11
11
While this will not ignore hidden files:\
12
12
` fssize . --ignore-hidden-files `
13
+
14
+ # Known issues
15
+ Selecting an area with the mouse (atleast in xterm) can hang the application until it is unselected or a key is pressed
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
)
17
17
18
18
const programName = "fssize"
19
- const version = "v0.0.3 "
19
+ const version = "v0.0.4 "
20
20
21
21
func printError (str string ) {
22
22
os .Stderr .WriteString ("\x1b [0;31m" + programName + ": " + str + "\x1b [0m\n " )
@@ -158,7 +158,9 @@ This outputs the estimated kibibyte (KiB) size of all packages`)
158
158
go func () {
159
159
for fssize .accumulating {
160
160
time .Sleep (250 * time .Millisecond )
161
- app .QueueUpdateDraw (func () {})
161
+ if fssize .currentTab != Packages {
162
+ app .QueueUpdateDraw (func () {})
163
+ }
162
164
}
163
165
}()
164
166
You can’t perform that action at this time.
0 commit comments