Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Back In Time

Version 1.4.1-dev (development of upcoming release)
* wip
* Fix bug: GUI didn't start when show hidden files button was on (#1535).

Version 1.4.0 (2023-09-14)
* Project: Renamed branch "master" to "main" and started "gitflow" branching model.
Expand Down
2 changes: 1 addition & 1 deletion qt/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,9 +596,9 @@ def _create_actions(self):
self.act_pause_take_snapshot.setVisible(False)
self.act_resume_take_snapshot.setVisible(False)
self.act_stop_take_snapshot.setVisible(False)
self.act_show_hidden.toggled.connect(self.btnShowHiddenFilesToggled)
self.act_show_hidden.setCheckable(True)
self.act_show_hidden.setChecked(self.showHiddenFiles)
self.act_show_hidden.toggled.connect(self.btnShowHiddenFilesToggled)

def _create_shortcuts_without_actions(self):
"""Create shortcuts that are not related to a visual element in the
Expand Down