Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

shellconf: have top menu items on the left

corresponds to layout in menu then

Changeset c7e212338a38

Parent 38bc36b349a2

by Adrian Buehlmann

Changes to one file · Browse files at c7e212338a38 Showing diff from parent 38bc36b349a2 Diff from another changeset...

 
66
67
68
69
 
70
71
72
 
80
81
82
83
 
84
85
86
87
88
 
89
90
91
 
99
100
101
102
 
103
104
105
106
107
108
 
109
110
111
 
112
113
114
 
66
67
68
 
69
70
71
72
 
80
81
82
 
83
84
85
86
87
 
88
89
90
91
 
99
100
101
 
102
103
104
105
106
107
 
108
109
110
 
111
112
113
114
@@ -66,7 +66,7 @@
  # Sub menus pane   label = gtk.Label(_('Sub menu items:'))   label.set_alignment(0, 0.5) - setcell(label, 0, 0) + setcell(label, 0, 2)     # model: [0]hgcmd, [1]translated menu label   self.submmodel = model = gtk.ListStore(gobject.TYPE_STRING, @@ -80,12 +80,12 @@
  cell = gtk.CellRendererText()   column.pack_start(cell, True)   column.add_attribute(cell, 'text', 1) - setcell(withframe(list), 1, 0) + setcell(withframe(list), 1, 2)     # Top menus pane   label = gtk.Label(_('Top menu items:'))   label.set_alignment(0, 0.5) - setcell(label, 0, 2) + setcell(label, 0, 0)     # model: [0]hgcmd, [1]translated menu label   self.topmmodel = model = gtk.ListStore(gobject.TYPE_STRING, @@ -99,16 +99,16 @@
  cell = gtk.CellRendererText()   column.pack_start(cell, True)   column.add_attribute(cell, 'text', 1) - setcell(withframe(list), 1, 2) + setcell(withframe(list), 1, 0)     # move buttons   mbbox = gtk.VBox()   setcell(mbbox, 1, 1)   - topbutton = gtk.Button(_('Top ->')) + topbutton = gtk.Button(_('<- Top'))   topbutton.connect('clicked', self.top_clicked)   mbbox.add(topbutton) - subbutton = gtk.Button(_('<- Sub')) + subbutton = gtk.Button(_('Sub ->'))   subbutton.connect('clicked', self.sub_clicked)   mbbox.add(subbutton)