mirror of
https://github.com/aclist/dztui.git
synced 2026-09-01 04:37:04 +02:00
Compare commits
No commits in common. "a5be4d9d316d03ad7dc395c41420e68a2c6d68e1" and "4f3f17450c81e5fd2e188188158e85ffb397ca28" have entirely different histories.
a5be4d9d31
...
4f3f17450c
4
dzgui.sh
4
dzgui.sh
@ -585,10 +585,10 @@ fetch_helpers_by_sum(){
|
|||||||
[[ -f "$config_file" ]] && source "$config_file"
|
[[ -f "$config_file" ]] && source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["funcs"]="c2aec0a2fc153a2535e6493b3751ca81"
|
["funcs"]="b3a45a42bc748dbcbebcd1a7748609cd"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
||||||
["ui.py"]="294a7daf544a96e2a108d252df5e0676"
|
["ui.py"]="3dfddc8260449d59f4ca71bc4b8d2989"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version="6.0.0-beta.3"
|
version="6.0.0-beta.2"
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
|||||||
@ -3543,10 +3543,9 @@ class Options(Gtk.Box):
|
|||||||
self, entry: Gtk.Entry, context: Preferences
|
self, entry: Gtk.Entry, context: Preferences
|
||||||
) -> None:
|
) -> None:
|
||||||
text = entry.get_text()
|
text = entry.get_text()
|
||||||
button = entry.sibling
|
|
||||||
if not self._is_valid_text(text, context):
|
if not self._is_valid_text(text, context):
|
||||||
return
|
return
|
||||||
self._on_save_clicked(button, entry, context)
|
self._on_save_clicked(None, entry, context)
|
||||||
|
|
||||||
def _make_grid(self, rows: list) -> Gtk.Grid:
|
def _make_grid(self, rows: list) -> Gtk.Grid:
|
||||||
grid = Gtk.Grid(
|
grid = Gtk.Grid(
|
||||||
@ -3570,7 +3569,7 @@ class Options(Gtk.Box):
|
|||||||
return grid
|
return grid
|
||||||
|
|
||||||
def _on_save_clicked(
|
def _on_save_clicked(
|
||||||
self, button: Gtk.Button, entry: Gtk.Entry, context: Preferences
|
self, button: Gtk.Button | None, entry: Gtk.Entry, context: Preferences
|
||||||
) -> None:
|
) -> None:
|
||||||
show_wait_dialog = True
|
show_wait_dialog = True
|
||||||
wait_msg = "Working"
|
wait_msg = "Working"
|
||||||
@ -3606,7 +3605,7 @@ class Options(Gtk.Box):
|
|||||||
# prevent triggering on initial init
|
# prevent triggering on initial init
|
||||||
if App.treeview.subpage is None:
|
if App.treeview.subpage is None:
|
||||||
return
|
return
|
||||||
process_toggle(RowType.TGL_BRANCH)
|
# TODO: process_toggle(RowType.TGL_BRANCH)
|
||||||
|
|
||||||
def _on_radio_toggled(
|
def _on_radio_toggled(
|
||||||
self, button: Gtk.RadioButton, context: Preferences
|
self, button: Gtk.RadioButton, context: Preferences
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user