Fixed backspaceing in path_entry causing cursor to jump to start of entry

This commit is contained in:
2025-12-27 15:56:48 -06:00
parent 76a4b2e0e2
commit 9932f34782

View File

@@ -55,6 +55,7 @@ class WindowMixin(TabMixin):
path_entry = self.builder.get_object("path_entry") path_entry = self.builder.get_object("path_entry")
tab = self.get_fm_window(wid).get_tab_by_id(tid) tab = self.get_fm_window(wid).get_tab_by_id(tid)
path_entry.set_text(tab.get_current_directory()) path_entry.set_text(tab.get_current_directory())
path_entry.set_position(-1)
path_entry = None path_entry = None
tab = None tab = None