aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/uzbl-tabbed5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/uzbl-tabbed b/bin/uzbl-tabbed
index 4e860d2..03c2ffa 100755
--- a/bin/uzbl-tabbed
+++ b/bin/uzbl-tabbed
@@ -344,7 +344,7 @@ class SocketClient:
args = cmd[3:]
if not message == "EVENT":
- next
+ return
# strip the surrounding []
instance_name = instance_name[1:-1]
@@ -533,6 +533,9 @@ class UzblInstance:
def title_changed(self, gtk_only = True): # GTK-only is for indexes
'''self.title has changed, update the tabs list'''
+ if not self.tab:
+ return
+
tab_titles = config['tab_titles']
tab_indexes = config['tab_indexes']
show_ellipsis = config['show_ellipsis']