Skip to content

Commit b07d8d3

Browse files
committed
Fix title not updating when autocomplete is disabled
1 parent 19c3432 commit b07d8d3

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

docs/src/markdown/about/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 4.20.2
4+
5+
- **Fix**: Fix title not updating when autocomplete is disabled.
6+
37
## 4.20.1
48

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

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ include = [
5757
"/rummage/lib/gui/data/**/*.css",
5858
"/rummage/lib/gui/data/**/*.html",
5959
"/rummage/lib/gui/data/**/*.svg",
60+
"/rummage/lib/gui/data/**/*.ico",
61+
"/rummage/lib/gui/data/**/*.icns",
6062
"/tests/**/*.py",
6163
"/tools/**/*.py",
6264
"/rummage/lib/gui/localization/locale/**/*.po",
6365
"/docs/src/markdown/**/*.md",
6466
"/docs/src/markdown/**/*.png",
6567
"/docs/src/markdown/**/*.svg",
6668
"/docs/src/markdown/**/*.gif",
67-
"/docs/src/markdown/**/*.icns",
68-
"/docs/src/markdown/**/*.ico",
6969
"/docs/src/markdown/**/*.js",
7070
"/docs/src/markdown/**/*.css",
7171
"/docs/src/markdown/**/*.html",
@@ -74,8 +74,6 @@ include = [
7474
"/docs/theme/**/*.html",
7575
"/docs/theme/**/*.css",
7676
"/requirements/*.txt",
77-
"/setup.cfg",
78-
"/tox.ini",
7977
"/gui.fbp",
8078
"/mkdocs.yml",
8179
"/mkdocs-internal.yml",

rummage/lib/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def parse_version(ver):
189189

190190

191191
# (major, minor, micro, release type, pre-release build, post-release build, development-release)
192-
__version_info__ = Version(4, 20, 1, 'final')
192+
__version_info__ = Version(4, 20, 2, 'final')
193193
__version__ = __version_info__._get_canonical()
194194
__app__ = "Rummage"
195195
__status__ = __version_info__[3]

rummage/lib/gui/controls/autocomplete_combo.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ def on_text_change(self, event):
204204
"""Autocomplete on text change event."""
205205

206206
if not self.enable_autocomplete:
207+
if self.changed_callback is not None:
208+
self.changed_callback()
207209
event.Skip()
208210
return
209211

rummage/lib/gui/data/docs/.dochash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7170c1c5809a49f076f26d602d20c65a
1+
2ff424e68093d28f7c32735370b6ac9a

rummage/lib/gui/data/docs/about/changelog.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525

2626
<!-- Table of Content (Don't show for static sites) -->
2727
<h1 id="changelog">Changelog</h1>
28+
<h2 id="4202">4.20.2</h2>
29+
<ul>
30+
<li><strong>Fix</strong>: Fix title not updating when autocomplete is disabled.</li>
31+
</ul>
2832
<h2 id="4201">4.20.1</h2>
2933
<ul>
3034
<li><strong>Fix</strong>: Fix preference window not being able to open.</li>

0 commit comments

Comments
 (0)