Jader Dias
Jader Dias

Reputation: 90465

Why does TortoiseHg hides some revisions by default?

I have to click in the radio button All to see all revisions. Why some are hidden by default? How to show all by default?

I have TortoiseHg 1.1.5 with Mercurial-1.7, Python-2.6.4, PyGTK-2.16.0, GTK-2.16.6 on Windows 7.

Upvotes: 2

Views: 128

Answers (1)

pyfunc
pyfunc

Reputation: 66709

I see the following in the source code: 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

Upvotes: 1

Related Questions