[add] pick trace button color

This commit is contained in:
Marcel Paffrath 2017-09-08 12:25:30 +02:00
parent 51fe48553d
commit d15828a058
2 changed files with 3 additions and 2 deletions

View File

@ -554,8 +554,8 @@ class MainWindow(QMainWindow):
self.pg = pg
# init style
#self.set_style('dark')
self.set_style('bright')
self.set_style('dark')
#self.set_style('bright')
#self.set_style('default')
# add event combo box and ref/test buttons

View File

@ -2531,6 +2531,7 @@ class TuneAutopicker(QWidget):
def add_buttons(self):
self.pick_button = QtGui.QPushButton('Pick Trace')
self.pick_button.setStyleSheet('QPushButton{border-color: rgba(110, 200, 0, 255)}')
self.pick_button.clicked.connect(self.call_picker)
self.close_button = QtGui.QPushButton('Close')
self.close_button.clicked.connect(self.hide)