mirror of
https://github.com/aclist/dztui.git
synced 2026-08-31 12:16:55 +02:00
Compare commits
No commits in common. "239f806f7e9e0e262ad7f25e45e2aac25eef6635" and "35f1f180d2b2faba61788331842fa865df433e92" have entirely different histories.
239f806f7e
...
35f1f180d2
@ -4,10 +4,6 @@
|
||||
## Added
|
||||
- Flag to disable branch toggle for distro-packaged releases
|
||||
|
||||
## Fixed
|
||||
- ESC key destroying wait dialogs while thread is pending
|
||||
- Tooltip signals being processed on main menu
|
||||
|
||||
## [6.0.0-beta.7] 2025-09-20
|
||||
## Added
|
||||
- Users can save text notes to describe servers
|
||||
|
||||
2
dzgui.sh
2
dzgui.sh
@ -588,7 +588,7 @@ fetch_helpers_by_sum(){
|
||||
["funcs"]="65134f86b7c9e14173e05d8e3ebea101"
|
||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||
["servers.py"]="7f83d5c1ca54acb12f1bd6657feb2ecf"
|
||||
["ui.py"]="840f6f97a27d94606c15b8925bf8dd87"
|
||||
["ui.py"]="aac7ef0f75876da82fba8be2740e22b9"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
["pefile.py"]="21531f2c0d9dfa5f110cf6779f9d22c0"
|
||||
)
|
||||
|
||||
@ -1872,9 +1872,6 @@ class TreeView(Gtk.TreeView):
|
||||
) -> bool:
|
||||
if self.is_server_context(self.view) is False:
|
||||
return
|
||||
if self.subpage is None:
|
||||
return
|
||||
|
||||
coords = widget.convert_widget_to_bin_window_coords(x, y)
|
||||
path = self.get_path_at_pos(coords.bx, coords.by)
|
||||
if path is None:
|
||||
@ -3210,11 +3207,8 @@ class GenericDialog(Gtk.MessageDialog):
|
||||
self.outer.set_margin_end(30)
|
||||
|
||||
def _on_dialog_delete(
|
||||
self, response_id: Gtk.ResponseType, event: Gdk.Event
|
||||
self, response_id: Gtk.ResponseType
|
||||
) -> Literal[True]:
|
||||
"""
|
||||
Prevent manual dialog destruction
|
||||
"""
|
||||
return True
|
||||
|
||||
def _return_to_main_menu(self, widget: Gtk.Widget) -> None:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user