1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-27 21:02:36 +01:00

fix: restore keyboard input

This commit is contained in:
aclist 2024-10-31 16:41:28 +09:00
parent f6edbc1c95
commit be06a87d8d
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## [5.5.0-beta.1] 2024-10-31
### Fixed
- Restore keyboard input to keyword entry field
## [5.5.0-beta.1] 2024-10-30
### Added
- Support servers running DLC content (fixes Frostline servers)

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail
version=5.5.0-beta.1
version=5.5.0-beta.2
#CONSTANTS
aid=221100
@ -566,7 +566,7 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file"
declare -A sums
sums=(
["ui.py"]="91ea4d842d35a7d5e1441174f1f463c5"
["ui.py"]="804fd1ec88da07b7c6015fd341c5c133"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="105e7be170eea48ce61fcfe7b50b8f59"

View file

@ -1932,7 +1932,7 @@ class FilterPanel(Gtk.Box):
case Gdk.KEY_Escape:
GLib.idle_add(self.restore_focus_to_treeview)
case _:
return True
return False
def get_outer_grid(self):
panel = self.get_parent()