Keep notification height when others are added and/or removed.

ubuntu/cosmic
Simon Quigley 6 years ago
parent 92f622e1da
commit 6f67315566

1
debian/changelog vendored

@ -1,6 +1,7 @@
lxqt-notificationd (0.13.0-0ubuntu2) UNRELEASED; urgency=medium
* Bump Standards-version to 4.1.5, no changes needed.
* Keep notification height when others are added and/or removed.
-- Simon Quigley <tsimonq2@ubuntu.com> Sat, 14 Jul 2018 01:38:39 -0500

@ -0,0 +1,15 @@
Description: Keep notification height when others are added and/or removed
Author: Piotr Wójcik <chocimier@tlen.pl>
Origin: upstream
Applied-Upstream: commit:db5707d
Last-Update: 2018-07-14
--- a/src/notification.cpp
+++ b/src/notification.cpp
@@ -60,6 +60,7 @@ Notification::Notification(const QString
setMaximumWidth(parent->width());
setMinimumWidth(parent->width());
+ setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
setValues(application, summary, body, icon, timeout, actions, hints);

@ -0,0 +1 @@
fix-notification-height-changing.patch
Loading…
Cancel
Save