Merge pull request #882 from vssdeo/760-working-directory-feature-is-broken

[bug 760] working directory feature is broken
This commit is contained in:
Matt Rose 2024-02-14 21:34:29 -05:00 committed by GitHub
commit 750a9be85a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 38 additions and 2 deletions

View File

@ -499,6 +499,34 @@ class Config(object):
"""Set a layout"""
return(self.base.set_layout(layout, tree))
def copy_layout_item(self, src_layout, dst_layout, item):
items = {}
for child in src_layout:
section = src_layout[child]
sec_type = section.get('type', None)
if sec_type != 'Terminal':
continue
cp_item = section.get(item, None)
uuid = str(section.get('uuid', None))
if cp_item:
items[uuid] = cp_item
dbg("items to be copied:%s" % items)
for child in dst_layout:
section = dst_layout[child]
sec_type = section.get('type', None)
if sec_type != 'Terminal':
continue
uuid = str(section.get('uuid', None))
update_item = items.get(uuid, None)
if uuid and update_item:
dbg("update layout item:(%s) with value:(%s)"
% (item, update_item))
section[item] = update_item
class ConfigBase(Borg):
"""Class to provide access to our user configuration"""
loaded = None

View File

@ -1619,6 +1619,14 @@ class PrefsEditor:
(model, rowiter) = selected.get_selected()
name = model.get_value(rowiter, 0)
config_layout = self.config.base.get_layout(name)
dbg("layout from terminator:(%s)" % current_layout)
dbg("layout from config:(%s)" % config_layout)
self.config.copy_layout_item(config_layout, current_layout, 'directory')
self.config.copy_layout_item(config_layout, current_layout, 'command')
dbg("updated layout from terminator:(%s)" % current_layout)
if self.config.replace_layout(name, current_layout):
treeview.set_cursor(model.get_path(rowiter), column=treeview.get_column(0), start_editing=False)
self.config.save()
@ -2188,7 +2196,7 @@ class LayoutEditor:
def on_layout_profile_workingdir_activate(self, widget):
"""A new working directory has been entered for this item"""
workdir = widget.get_text()
workdir = os.path.expanduser(widget.get_text())
layout = self.config.layout_get_config(self.layout_name)
layout[self.layout_item]['directory'] = workdir
self.config.save()

View File

@ -1507,7 +1507,7 @@ class Terminal(Gtk.VBox):
def set_cwd(self, cwd=None):
"""Set our cwd"""
if cwd is not None:
self.cwd = cwd
self.cwd = os.path.expanduser(cwd)
def held_open(self, widget=None, respawn=False, debugserver=False):
self.is_held_open = True