Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

hgqt/shellconf: use standard icons

Changeset c51fbc0627f6

Parent 83560119545b

by Adrian Buehlmann

Changes to one file · Browse files at c51fbc0627f6 Showing diff from parent 83560119545b Diff from another changeset...

 
93
94
95
96
 
 
 
97
98
99
 
 
100
101
102
 
93
94
95
 
96
97
98
99
100
 
101
102
103
104
105
@@ -93,10 +93,13 @@
  grid.addWidget(w, 1, 2, 4, 1)   self.connect(w, SIGNAL("itemSelectionChanged ()"), self.update_states)   - self.top_button = w = QPushButton(_("<- Top")) + style = QApplication.style() + icon = style.standardIcon(QStyle.SP_ArrowLeft) + self.top_button = w = QPushButton(icon, '')   grid.addWidget(w, 2, 1)   self.connect(w, SIGNAL("clicked()"), self.top_clicked) - self.sub_button = w = QPushButton(_("Sub ->")) + icon = style.standardIcon(QStyle.SP_ArrowRight) + self.sub_button = w = QPushButton(icon, '')   grid.addWidget(w, 3, 1)   self.connect(w, SIGNAL("clicked()"), self.sub_clicked)