Index: config.py ================================================================== --- config.py +++ config.py @@ -141,10 +141,11 @@ self.retain_deleted = 0 self.auto_save_appstate = 1 self.auto_save_stations = 0 self.reuse_m3u = 1 self.playlist_asis = 0 + self.window_title = 1 self.google_homepage = 0 self.windows = platform.system()=="Windows" self.pyquery = 1 self.debug = 0 Index: gtk3.xml.gz ================================================================== --- gtk3.xml.gz +++ gtk3.xml.gz cannot compute difference between binary files Index: st2.py ================================================================== --- st2.py +++ st2.py @@ -254,11 +254,12 @@ def channel_switch_by_name(self, name): self.notebook_channels.set_current_page(self.channel_names.index(name)) # Mirror selected channel tab into main window title def update_title(self): - self.win_streamtuner2.set_title("Streamtuner2 - %s" % self.channel().meta.get("title")) + if conf.window_title: + self.win_streamtuner2.set_title("Streamtuner2 - %s" % self.channel().meta.get("title")) # Channel: row{} dict for current station def row(self): return self.channel().row()