Я должен нажать на переключатель All, чтобы увидеть все ревизии. Почему некоторые скрыты по умолчанию? Как показать все по умолчанию?
All
У меня TortoiseHg 1.1.5 с Mercurial-1.7, Python-2.6.4, PyGTK-2.16.0, GTK-2.16.6 в Windows 7.
Я вижу следующее в исходном коде: 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