summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2015-11-03 14:01:13 +0100
committerWolfgang Ulbrich <[email protected]>2015-11-03 14:01:13 +0100
commit65dabb3d598807c15fca65fd128a4d62e6b7995e (patch)
tree6cf1533e466148ef80e217293041e74ea569c5c8
parent7d90c781e7b7fbc580fa828c2c2fa655f3aa7bf4 (diff)
downloadmate-notification-daemon-65dabb3d598807c15fca65fd128a4d62e6b7995e.tar.bz2
mate-notification-daemon-65dabb3d598807c15fca65fd128a4d62e6b7995e.tar.xz
Gtk3: fix height of notification in nodoka and standard theme
- this fixes also the position of the notifications credits to..... Author: lukefromdc
-rw-r--r--src/themes/nodoka/nodoka-theme.c1
-rw-r--r--src/themes/standard/theme.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/themes/nodoka/nodoka-theme.c b/src/themes/nodoka/nodoka-theme.c
index 27b1912..948fb4b 100644
--- a/src/themes/nodoka/nodoka-theme.c
+++ b/src/themes/nodoka/nodoka-theme.c
@@ -830,6 +830,7 @@ create_notification(UrlClickedCb url_clicked)
windata->url_clicked = url_clicked;
win = gtk_window_new(GTK_WINDOW_POPUP);
+ gtk_window_set_resizable(GTK_WINDOW(win), FALSE);
windata->win = win;
windata->composited = FALSE;
diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index 2e27b0c..36b947d 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -658,6 +658,7 @@ GtkWindow* create_notification(UrlClickedCb url_clicked)
windata->url_clicked = url_clicked;
win = gtk_window_new(GTK_WINDOW_POPUP);
+ gtk_window_set_resizable(GTK_WINDOW(win), FALSE);
windata->win = win;
windata->composited = FALSE;