Toasts, deal with top or bottom taskbar

This commit is contained in:
Kiooeht 2011-08-27 14:19:39 -07:00
parent d9a742d90c
commit a3d15b5eaa

View file

@ -232,7 +232,9 @@ class PesterToast(QtGui.QWidget, DefaultToast):
self.msg.setText(PesterToast.wrapText(self.msg.font(), str(self.msg.text()), self.parent().theme["toasts/width"], self.parent().theme["toasts/content/style"])) self.msg.setText(PesterToast.wrapText(self.msg.font(), str(self.msg.text()), self.parent().theme["toasts/width"], self.parent().theme["toasts/content/style"]))
anim.setStartValue(0) p = QtGui.QApplication.desktop().availableGeometry(self).bottomRight()
o = QtGui.QApplication.desktop().screenGeometry(self).bottomRight()
anim.setStartValue(p.y() - o.y())
anim.setEndValue(100) anim.setEndValue(100)
self.connect(anim, QtCore.SIGNAL('valueChanged(QVariant)'), self.connect(anim, QtCore.SIGNAL('valueChanged(QVariant)'),
self, QtCore.SLOT('updateBottomLeftAnimation(QVariant)')) self, QtCore.SLOT('updateBottomLeftAnimation(QVariant)'))