summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2015-10-20 13:44:49 +0200
committerhut <hut@lepus.uberspace.de>2015-10-20 13:44:49 +0200
commit0012896fa16d4311e46d9bd6b0de021f42d1d3a5 (patch)
treeadeb660496d7a267a54b30aa4ebb1cd6021af09d
parenta0e753fa3ab13ef36ad93fab7f48982b1abbb46b (diff)
downloadranger-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.py2
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 \