Index: gtk2.xml ================================================================== --- gtk2.xml +++ gtk2.xml @@ -313,10 +313,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + all channels True True @@ -799,10 +934,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True True @@ -817,10 +1006,19 @@ 2 1 2 + + + + + + + + + @@ -1239,12 +1437,11 @@ True False - audio/mpeg + audio/mpeg 1 2 @@ -1828,20 +2025,17 @@ True False 10 - + True False - 1 - 0 - 2 - You can enable <i>channels</i> and <i>plugins</i> here. Changes take effect after restarting streamtuner2. + 0.05000000074505806 + <b>Channels</b> show up as tabs. While <b>feature</b> <i>plugins</i> add menu entries +or internal functions. Changes take effect after restarting streamtuner2. True - right - True True True 0 @@ -1854,15 +2048,16 @@ True False 0.40999999642372131 - Ordering of channel tabs + Tab ordering - True + False True + 6 0 @@ -2520,12 +2715,12 @@ True False bookmark True - + @@ -2532,12 +2727,12 @@ gtk-save-as True False True True - + @@ -2544,13 +2739,13 @@ gtk-edit True False True True - + - + @@ -2619,12 +2814,12 @@ gtk-delete True False True True - + Index: st2.py ================================================================== --- st2.py +++ st2.py @@ -848,21 +848,21 @@ # put gtk widgets into config dialog notebook def add_(self, id, w, label=None, color=""): w.set_property("visible", True) main.widgets[id] = w if label: - w.set_width_chars(10) + w.set_width_chars(11) w = self.hbox(w, self.label(label)) if color: w = mygtk.bg(w, color) self.plugin_options.pack_start(w) def label(self, label): label = gtk.Label(label) label.set_property("visible", True) label.set_line_wrap(True) - label.set_size_request(250, -1) + label.set_size_request(400, -1) return label def hbox(self, w1, w2): vbox = gtk.HBox(homogeneous=False, spacing=10) vbox.set_property("visible", True)