Compare commits

..

No commits in common. "a5be4d9d316d03ad7dc395c41420e68a2c6d68e1" and "4f3f17450c81e5fd2e188188158e85ffb397ca28" have entirely different histories.

3 changed files with 6 additions and 7 deletions

View File

@ -585,10 +585,10 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file"
declare -A sums
sums=(
["funcs"]="c2aec0a2fc153a2535e6493b3751ca81"
["funcs"]="b3a45a42bc748dbcbebcd1a7748609cd"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
["ui.py"]="294a7daf544a96e2a108d252df5e0676"
["ui.py"]="3dfddc8260449d59f4ca71bc4b8d2989"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
)
local author="aclist"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -o pipefail
version="6.0.0-beta.3"
version="6.0.0-beta.2"
#CONSTANTS
aid=221100

View File

@ -3543,10 +3543,9 @@ class Options(Gtk.Box):
self, entry: Gtk.Entry, context: Preferences
) -> None:
text = entry.get_text()
button = entry.sibling
if not self._is_valid_text(text, context):
return
self._on_save_clicked(button, entry, context)
self._on_save_clicked(None, entry, context)
def _make_grid(self, rows: list) -> Gtk.Grid:
grid = Gtk.Grid(
@ -3570,7 +3569,7 @@ class Options(Gtk.Box):
return grid
def _on_save_clicked(
self, button: Gtk.Button, entry: Gtk.Entry, context: Preferences
self, button: Gtk.Button | None, entry: Gtk.Entry, context: Preferences
) -> None:
show_wait_dialog = True
wait_msg = "Working"
@ -3606,7 +3605,7 @@ class Options(Gtk.Box):
# prevent triggering on initial init
if App.treeview.subpage is None:
return
process_toggle(RowType.TGL_BRANCH)
# TODO: process_toggle(RowType.TGL_BRANCH)
def _on_radio_toggled(
self, button: Gtk.RadioButton, context: Preferences