我得按一下单选按钮 All 查看所有修订。 为什么有些是默认隐藏的? 如何默认全部显示?
All
我在Windows7上有龟1.1.5和Mercurial-1.7,Python-2.6.4,PyGTK-2.16.0,GTK-2.16.6。
我在源代码中看到了以下内容: http://bitbucket.org/tortoisehg/stable/src/9d917274ab7e/tortoisehg/hgtk/history.py
class FilterBar(gtklib.SlimToolbar): 'Filter Toolbar for repository log' def __init__(self, tooltips, filter_mode, branch_names, repo): gtklib.SlimToolbar.__init__(self, tooltips) self.filter_mode = filter_mode self.buttons = {} self.handlers = {} self.all = gtk.RadioButton(None, _('All')) self.all.set_active(True) self.append_widget(self.all, padding=0) self.buttons['all'] = self.all