Diff
Differences From Artifact [af174af9c9]:
- File channels/__init__.py — part of check-in [18b4da567f] at 2015-04-03 17:35:55 on branch trunk — Got rid of static main.channel_names[] list. Instead now querying Gtk notebook_channels widget for current page name ordering. More plugin defaults added to ConfigDict.defaults(), as workaround for not preparsing inactive plugins on startup. (user: mario, size: 20411) [annotate] [blame] [check-ins using]
To Artifact [98bda28d4c]:
- File channels/__init__.py — part of check-in [6fab0e7170] at 2015-04-03 20:43:42 on branch trunk — Made channel tabs reorderable. Now kept in config/window.json as `tab_order` and current page saved as `tab_current` instead of pageno. Disabled progressbar changes for ahttp, made search_server search run in a thread so status can be shown. (user: mario, size: 20476) [annotate] [blame] [check-ins using]
︙ | |||
569 570 571 572 573 574 575 576 | 569 570 571 572 573 574 575 576 577 | + | # try to initialize superclass now, before adding to channel tabs GenericChannel.gui(self, parent) # add notebook tab tab = parent.notebook_channels.insert_page_menu(vbox, ev_label, plain_label, -1) parent.notebook_channels.set_tab_reorderable(vbox, True) |