Skip to content

Commit

Permalink
Fix preference window not opening
Browse files Browse the repository at this point in the history
Fixes #458
  • Loading branch information
facelessuser committed Apr 4, 2024
1 parent 527a736 commit 19c3432
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/src/markdown/about/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.20.1

- **Fix**: Fix preference window not being able to open.

## 4.20

- **NEW**: Add new autocomplete setting to disable/enable autocomplete. Mainly for Linux systems where autocomplete
Expand Down
2 changes: 1 addition & 1 deletion rummage/lib/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def parse_version(ver):


# (major, minor, micro, release type, pre-release build, post-release build, development-release)
__version_info__ = Version(4, 20, 0, 'final')
__version_info__ = Version(4, 20, 1, 'final')
__version__ = __version_info__._get_canonical()
__app__ = "Rummage"
__status__ = __version_info__[3]
Expand Down
2 changes: 1 addition & 1 deletion rummage/lib/gui/data/docs/.dochash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f7fe6e973246f6d3f0891e446243fabc
7170c1c5809a49f076f26d602d20c65a
4 changes: 4 additions & 0 deletions rummage/lib/gui/data/docs/about/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@

<!-- Table of Content (Don't show for static sites) -->
<h1 id="changelog">Changelog</h1>
<h2 id="4201">4.20.1</h2>
<ul>
<li><strong>Fix</strong>: Fix preference window not being able to open.</li>
</ul>
<h2 id="420">4.20</h2>
<ul>
<li><strong>NEW</strong>: Add new autocomplete setting to disable/enable autocomplete. Mainly for Linux systems where autocomplete
Expand Down
2 changes: 1 addition & 1 deletion rummage/lib/gui/dialogs/settings_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def refresh_localization(self):
self.m_check_update_button.SetLabel(self.CHECK_NOW)
self.m_filetype_label.SetLabel(self.SPECIAL)
self.m_alt_row_checkbox.SetLabel(self.ALT_ROW_COLOR)
self.m_autocomplete.SetLabel(self.AUTOCOMPLETE)
self.m_autocomplete_checkbox.SetLabel(self.AUTOCOMPLETE)

self.load_help(self.EDITOR_HELP)

Expand Down

0 comments on commit 19c3432

Please sign in to comment.