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