Skip to content

Commit

Permalink
[bug] 760-working-directory-feature-is-broken gnome-terminator#760
Browse files Browse the repository at this point in the history
- directory was not getting expanded for ~ to user dir while changing path
  • Loading branch information
vssdeo committed Sep 17, 2023
1 parent 610f890 commit 1d36d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ def unzoom(self, widget=None):
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
Expand Down

0 comments on commit 1d36d34

Please sign in to comment.