mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +01:00
fix: return when aborting main loop
This commit is contained in:
parent
e1c3855d72
commit
5a3c86fdf5
2 changed files with 3 additions and 2 deletions
4
dzgui.sh
4
dzgui.sh
|
@ -562,7 +562,7 @@ fetch_helpers_by_sum(){
|
||||||
[[ -f "$config_file" ]] && source "$config_file"
|
[[ -f "$config_file" ]] && source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="9dcc0ffd25b54d1b446c23220bee589c"
|
["ui.py"]="f89047e3fde843dbb52d343daf8d2675"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="44eca80b207057423c2d298cc7cf1e29"
|
["funcs"]="44eca80b207057423c2d298cc7cf1e29"
|
||||||
|
@ -864,7 +864,7 @@ initial_setup(){
|
||||||
watcher_deps
|
watcher_deps
|
||||||
check_architecture
|
check_architecture
|
||||||
test_connection
|
test_connection
|
||||||
fetch_helpers > >(pdialog "Checking helper files")
|
# fetch_helpers > >(pdialog "Checking helper files")
|
||||||
varcheck
|
varcheck
|
||||||
source "$config_file"
|
source "$config_file"
|
||||||
lock
|
lock
|
||||||
|
|
|
@ -602,6 +602,7 @@ class ButtonBox(Gtk.Box):
|
||||||
if context == "Exit":
|
if context == "Exit":
|
||||||
logger.info("Normal user exit")
|
logger.info("Normal user exit")
|
||||||
Gtk.main_quit()
|
Gtk.main_quit()
|
||||||
|
return
|
||||||
cols = treeview.get_columns()
|
cols = treeview.get_columns()
|
||||||
|
|
||||||
if len(cols) > 1:
|
if len(cols) > 1:
|
||||||
|
|
Loading…
Reference in a new issue