mirror of
https://github.com/aclist/dztui.git
synced 2026-08-26 01:37:18 +02:00
fix: toggle branch signal propagation
This commit is contained in:
parent
a5be4d9d31
commit
6a554b4e88
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## [6.0.0-beta.4] 2025-08-13
|
||||
## Fixed
|
||||
- Branch toggle signal being emitted when entering Settings menu from other contexts
|
||||
|
||||
## [6.0.0-beta.3] 2025-08-08
|
||||
## Added
|
||||
- Additional server metadata to details dialog
|
||||
@ -13,6 +17,9 @@
|
||||
- Prevent debug button from activating when in certain input fields
|
||||
- Window size not updating correctly when unmaximizing window after changing "fullscreen at boot" setting
|
||||
|
||||
## Dropped
|
||||
- Extraneous information from right statusbar
|
||||
|
||||
## [6.0.0-beta.2] 2025-07-29
|
||||
## Fixed
|
||||
- Missing parameters when closing application via window decorations
|
||||
|
||||
4
dzgui.sh
4
dzgui.sh
@ -585,10 +585,10 @@ fetch_helpers_by_sum(){
|
||||
[[ -f "$config_file" ]] && source "$config_file"
|
||||
declare -A sums
|
||||
sums=(
|
||||
["funcs"]="c2aec0a2fc153a2535e6493b3751ca81"
|
||||
["funcs"]="2becf640f9c9645fd6562ac04e5599b2"
|
||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
||||
["ui.py"]="294a7daf544a96e2a108d252df5e0676"
|
||||
["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
)
|
||||
local author="aclist"
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
version="6.0.0-beta.3"
|
||||
version="6.0.0-beta.4"
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
||||
@ -3604,7 +3604,7 @@ class Options(Gtk.Box):
|
||||
|
||||
def _on_branch_changed(self, combo: Gtk.ComboBoxText) -> None:
|
||||
# prevent triggering on initial init
|
||||
if App.treeview.subpage is None:
|
||||
if App.treeview.subpage is not RowType.OPTIONS:
|
||||
return
|
||||
process_toggle(RowType.TGL_BRANCH)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user