为什么TortoiseHg默认会隐藏一些修改?

时间:2010-11-19 17:07:54

标签: windows-7 mercurial tortoisehg

我必须单击单选按钮All才能看到所有修订。 为什么有些人默认隐藏? 如何默认显示所有内容?

我在Windows 7上使用了Mercurial-1.7,Python-2.6.4,PyGTK-2.16.0,GTK-2.16.6的TortoiseHg 1.1.5。

1 个答案:

答案 0 :(得分:1)

我在源代码中看到以下内容: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