fds
This commit is contained in:
parent
964ea8aec0
commit
fb61b78631
3 changed files with 6 additions and 5 deletions
6
TODO
6
TODO
|
@ -1,16 +1,16 @@
|
|||
Features:
|
||||
* chat window margins
|
||||
* /me ghostDunk's [GD'S]
|
||||
* Transparent background
|
||||
* tab recombining gives wrong window icon
|
||||
* help menu -- about and forum
|
||||
* new sound on CEASE and BEGIN?
|
||||
* Chat rooms/browser
|
||||
* profile switch should say current profile
|
||||
* Transparent background?
|
||||
-- release alpha
|
||||
* User commands/stop user from sending commands accidentally
|
||||
* shared buddy lists - changes to the buddy list should refresh it?
|
||||
multiple clients share buddy list???
|
||||
* System tray menu
|
||||
* new sound on CEASE and BEGIN?
|
||||
* tab right-click menu on tabbed convos
|
||||
* comment history (up button)
|
||||
* page up/down scrolling
|
||||
|
|
|
@ -931,6 +931,7 @@ class PesterConvo(QtGui.QFrame):
|
|||
self.layout.addWidget(self.textArea)
|
||||
self.layout.addWidget(self.textInput)
|
||||
self.layout.setSpacing(0)
|
||||
self.layout.setMargin(0)
|
||||
|
||||
self.setLayout(self.layout)
|
||||
|
||||
|
@ -954,7 +955,7 @@ class PesterConvo(QtGui.QFrame):
|
|||
if self.parent():
|
||||
self.parent().updateMood(self.chum.handle, mood, unblocked)
|
||||
else:
|
||||
if self.chum.blocked(self.mainwindow.userprofile) and not unblocked:
|
||||
if self.chum.blocked(self.mainwindow.config) and not unblocked:
|
||||
self.setWindowIcon(QtGui.QIcon(self.mainwindow.theme["main/chums/moods/blocked/icon"]))
|
||||
else:
|
||||
self.setWindowIcon(mood.icon(self.mainwindow.theme))
|
||||
|
|
|
@ -230,7 +230,7 @@
|
|||
]
|
||||
},
|
||||
"convo":
|
||||
{"style": "background: rgb(190, 19, 4); font-family: 'Arial'",
|
||||
{"style": "background: rgb(190, 19, 4); font-family: 'Arial';",
|
||||
"size": [308, 194],
|
||||
"chumlabel": { "style": "background: rgb(255, 38, 18); color: white;",
|
||||
"align": { "h": "center", "v": "center" },
|
||||
|
|
Loading…
Reference in a new issue