move buttons around...
This commit is contained in:
parent
428a3b7213
commit
4cf0920aa1
24
gameview.py
24
gameview.py
@ -1419,19 +1419,18 @@ class GUI(QtGui.QWidget):
|
|||||||
self.sfxbutton.setText('&Pre-anim')
|
self.sfxbutton.setText('&Pre-anim')
|
||||||
self.sfxbutton.setToolTip("Play a character-specific animation before the next message")
|
self.sfxbutton.setToolTip("Play a character-specific animation before the next message")
|
||||||
|
|
||||||
self.additivebtn = QtGui.QCheckBox(self)
|
|
||||||
self.additivebtn.setChecked(False)
|
|
||||||
self.additivebtn.setText('Additi&ve')
|
|
||||||
self.additivebtn.resize(self.additivebtn.sizeHint())
|
|
||||||
self.additivebtn.clicked.connect(self.icchat_focus)
|
|
||||||
self.additivebtn.setToolTip('Append the next message to the previous one, without a new textbox')
|
|
||||||
|
|
||||||
self.deskbtn = QtGui.QCheckBox(self)
|
self.deskbtn = QtGui.QCheckBox(self)
|
||||||
self.deskbtn.setChecked(True)
|
self.deskbtn.setChecked(True)
|
||||||
self.deskbtn.setText('&Desk')
|
self.deskbtn.setText('&Desk')
|
||||||
self.deskbtn.stateChanged.connect(self.icchat_focus)
|
self.deskbtn.stateChanged.connect(self.icchat_focus)
|
||||||
self.deskbtn.setToolTip('Show or hide the desk in front of your character')
|
self.deskbtn.setToolTip('Show or hide the desk in front of your character')
|
||||||
|
|
||||||
|
self.slidebutton = QtGui.QCheckBox(self)
|
||||||
|
self.slidebutton.stateChanged.connect(self.icchat_focus)
|
||||||
|
self.slidebutton.setText('&Slide')
|
||||||
|
self.slidebutton.resize(self.slidebutton.sizeHint())
|
||||||
|
self.slidebutton.setToolTip("Tell clients to play courtroom slide animations for your message")
|
||||||
|
|
||||||
self.nointerruptbtn = QtGui.QCheckBox(self)
|
self.nointerruptbtn = QtGui.QCheckBox(self)
|
||||||
self.nointerruptbtn.setChecked(False)
|
self.nointerruptbtn.setChecked(False)
|
||||||
self.nointerruptbtn.stateChanged.connect(self.icchat_focus)
|
self.nointerruptbtn.stateChanged.connect(self.icchat_focus)
|
||||||
@ -1439,11 +1438,12 @@ class GUI(QtGui.QWidget):
|
|||||||
self.deskbtn.resize(self.deskbtn.sizeHint())
|
self.deskbtn.resize(self.deskbtn.sizeHint())
|
||||||
self.nointerruptbtn.setToolTip("Show the next message immediately, ignoring animations")
|
self.nointerruptbtn.setToolTip("Show the next message immediately, ignoring animations")
|
||||||
|
|
||||||
self.slidebutton = QtGui.QCheckBox(self)
|
self.additivebtn = QtGui.QCheckBox(self)
|
||||||
self.slidebutton.stateChanged.connect(self.icchat_focus)
|
self.additivebtn.setChecked(False)
|
||||||
self.slidebutton.setText('&Slide')
|
self.additivebtn.setText('Additi&ve')
|
||||||
self.slidebutton.resize(self.slidebutton.sizeHint())
|
self.additivebtn.resize(self.additivebtn.sizeHint())
|
||||||
self.slidebutton.setToolTip("Tell clients to play courtroom slide animations for your message")
|
self.additivebtn.clicked.connect(self.icchat_focus)
|
||||||
|
self.additivebtn.setToolTip('Append the next message to the previous one, without a new textbox')
|
||||||
|
|
||||||
self.effectdropdown = QtGui.QComboBox(self)
|
self.effectdropdown = QtGui.QComboBox(self)
|
||||||
self.effectdropdown.currentIndexChanged.connect(self.icchat_focus)
|
self.effectdropdown.currentIndexChanged.connect(self.icchat_focus)
|
||||||
|
Loading…
Reference in New Issue
Block a user