diff options
author | hut <hut@lepus.uberspace.de> | 2015-10-20 13:44:49 +0200 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2015-10-20 13:44:49 +0200 |
commit | 0012896fa16d4311e46d9bd6b0de021f42d1d3a5 (patch) | |
tree | adeb660496d7a267a54b30aa4ebb1cd6021af09d | |
parent | a0e753fa3ab13ef36ad93fab7f48982b1abbb46b (diff) | |
download | ranger-0012896fa16d4311e46d9bd6b0de021f42d1d3a5.tar.gz |
widgets.titlebar: replace ":" with " " for selectability
Now you can double-click on the path to select it fixes #304
-rw-r--r-- | ranger/gui/widgets/titlebar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/titlebar.py b/ranger/gui/widgets/titlebar.py index 76427ce1..dbd08981 100644 --- a/ranger/gui/widgets/titlebar.py +++ b/ranger/gui/widgets/titlebar.py @@ -98,7 +98,7 @@ class TitleBar(Widget): bar.add(self.fm.username, 'hostname', clr, fixed=True) bar.add('@', 'hostname', clr, fixed=True) bar.add(self.fm.hostname, 'hostname', clr, fixed=True) - bar.add(':', 'hostname', clr, fixed=True) + bar.add(' ', 'hostname', clr, fixed=True) pathway = self.fm.thistab.pathway if self.settings.tilde_in_titlebar and \ |