diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-11-03 14:01:13 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-11-03 14:01:13 +0100 |
commit | 65dabb3d598807c15fca65fd128a4d62e6b7995e (patch) | |
tree | 6cf1533e466148ef80e217293041e74ea569c5c8 /src/themes/standard | |
parent | 7d90c781e7b7fbc580fa828c2c2fa655f3aa7bf4 (diff) | |
download | mate-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
Diffstat (limited to 'src/themes/standard')
-rw-r--r-- | src/themes/standard/theme.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |