fix: use fixed-width property

This commit is contained in:
aclist 2025-10-03 19:52:55 +09:00
parent 9d1ee7e130
commit 89f37ab70d
3 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@
- ESC key destroying wait dialogs while thread is pending - ESC key destroying wait dialogs while thread is pending
- Tooltip signals being processed on main menu - Tooltip signals being processed on main menu
- Leaky variable name in dialog title - Leaky variable name in dialog title
- Prevent extraneous signals from propagating when column width is adjusted
## [6.0.0-beta.7] 2025-09-20 ## [6.0.0-beta.7] 2025-09-20
## Added ## Added

View File

@ -588,7 +588,7 @@ fetch_helpers_by_sum(){
["funcs"]="65134f86b7c9e14173e05d8e3ebea101" ["funcs"]="65134f86b7c9e14173e05d8e3ebea101"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="7f83d5c1ca54acb12f1bd6657feb2ecf" ["servers.py"]="7f83d5c1ca54acb12f1bd6657feb2ecf"
["ui.py"]="4fa719725febbeea31473d929a40393b" ["ui.py"]="f03879f088ad074f2ce3c92607c30202"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["pefile.py"]="21531f2c0d9dfa5f110cf6779f9d22c0" ["pefile.py"]="21531f2c0d9dfa5f110cf6779f9d22c0"
) )

View File

@ -2576,7 +2576,7 @@ class TreeView(Gtk.TreeView):
App.right_panel.filters_vbox.set_active_combo(0) App.right_panel.filters_vbox.set_active_combo(0)
App.grid.right_panel.filters_vbox.set_visible(True) App.grid.right_panel.filters_vbox.set_visible(True)
for column in self.get_columns(): for column in self.get_columns():
column.connect("notify::width", self._on_col_width_changed) column.connect("notify::fixed-width", self._on_col_width_changed)
App.grid.statusbar.update_server_meta() App.grid.statusbar.update_server_meta()