Skip to content

Commit

Permalink
GUI: Use autoscroll except for backup, fixes #63
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed Jun 16, 2024
1 parent 92f5383 commit 453551c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion npbackup/gui/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ def _upgrade_from_compact_view():
key="-OPERATIONS-PROGRESS-STDOUT-",
size=(70, 15),
visible=not __compact,
autoscroll=False, # Setting autoscroll=True on not visible Multiline takes seconds on updates
# Setting autoscroll=True on not visible Multiline takes seconds on updates
autoscroll=False if __fn_name == "backup" else True,
)
],
[
Expand Down

0 comments on commit 453551c

Please sign in to comment.