Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-26 | Gtk3: Don't use deprecated gtk_widget_reparent | yetist | 1 | -0/+5 | |
2015-08-26 | Gtk3: Don't use deprecated gdk_cursor_new | yetist | 2 | -5/+4 | |
2015-08-26 | Gtk3: Don't use deprecated gtk_widget_render_icon_pixbuf | yetist | 1 | -9/+5 | |
2015-08-26 | Gtk3: Don't use deprecated gdk_window_get_pointer | yetist | 2 | -0/+16 | |
2015-08-26 | Gtk3: Don't use deprecated gtk_widget_get_pointer | yetist | 1 | -0/+24 | |
2015-08-24 | removed one more suspicious reference to win32 | Monsta | 1 | -1/+0 | |
2015-08-24 | removed some suspicious references to win32 | Monsta | 1 | -12/+0 | |
2015-08-23 | drop xrandr 1.2 compatibility (it's ancient) | Monsta | 2 | -65/+32 | |
2015-08-19 | configure.ac: drop obsolete macro | monsta | 1 | -1/+0 | |
It's been a no-op for a long time. See https://mail.gnome.org/archives/commits-list/2011-December/msg00681.html for example. | |||||
2015-08-06 | Gtk3: Set push_in to FALSE | infirit | 1 | -0/+4 | |
We already do this for the same function in libmate-panel-applet. Thanks to luke on the forums. fixes #330 | |||||
2015-08-03 | Merge pull request #333 from NiceandGently/master | Martin Wimpress | 1 | -0/+1 | |
UI GTK3: use a size request for scrolled window in panel-run dialog | |||||
2015-08-02 | UI GTK3: use a size request for scrolled window in panel-run dialog | raveit65 | 1 | -0/+1 | |
- this fixes program list in GTK3 | |||||
2015-07-14 | na: fix background transparency | Denis Gorodnichev | 1 | -4/+37 | |
2015-07-14 | na: gtk2: fix build | Denis Gorodnichev | 2 | -0/+25 | |
2015-07-14 | na: restore help & about | Denis Gorodnichev | 2 | -16/+115 | |
build fix restore "Help" and "About" menu items | |||||
2015-07-14 | notification applet: support fixed-sized icons | Ryan Lortie | 4 | -24/+214 | |
Add a new _NET_SYSTEM_TRAY_ICON_SIZE property that is set to the value of the "icon-size" style property. The result is that all icons in the tray will be hinted to draw themselves with exactly this pixel size (16x16, for example). Bug #645232 Conflicts: applets/notification_area/na-tray-manager.c applets/notification_area/na-tray-manager.h applets/notification_area/na-tray.h | |||||
2015-07-14 | na: Fix thin lines appearing when an icon is removed | Vincent Untz | 1 | -0/+34 | |
We were simply never removing the NaTrayChild/GtkSocket object from the box when the icon/GtkPlug gets removed. Conflicts: applets/notification_area/na-tray.c | |||||
2015-07-14 | na: Add icon-padding style property to NaTrayApplet to set padding | Vincent Untz | 1 | -0/+13 | |
It can be used this way: NaTrayApplet { -NaTrayApplet-icon-padding: 6; } https://bugzilla.gnome.org/show_bug.cgi?id=583273 | |||||
2015-07-14 | na: Rewrite main.c to subclass PanelApplet as NaTrayApplet | Vincent Untz | 3 | -189/+230 | |
This is cleaner, and we'll be able to add style properties to this widget. Conflicts: applets/notification_area/main.c Conflicts: applets/notification_area/main.c | |||||
2015-07-14 | na: Move creating of GtkBox for NaTray | Vincent Untz | 1 | -22/+1 | |
Do it in init() instead of constructor(), for consistency. It shouldn't matter much, really. Conflicts: applets/notification_area/na-tray.c | |||||
2015-07-14 | Replace GtkObject with GObject also for Gtk+ 2 | infirit | 9 | -117/+2 | |
2015-07-14 | Drop gdkkeysyms-compat usage in Gtk+3 | infirit | 8 | -121/+105 | |
The new GDK_KEY_ keys are also in Gtk+2. | |||||
2015-07-14 | Remove unused variable | infirit | 1 | -3/+0 | |
2015-07-10 | 1.10.1 release (really!) - docbook build fixed :-/mate-panel-1.10.11.10 | Monsta | 1 | -0/+1 | |
2015-07-10 | Bump version to 1.10.1 | Monsta | 2 | -1/+9 | |
2015-07-10 | Merge pull request #323 from NiceandGently/master | monsta | 1 | -18/+40 | |
fish help: fix legal page | |||||
2015-07-10 | fish help: fix legal page | raveit65 | 1 | -18/+40 | |
2015-07-10 | Merge pull request #322 from NiceandGently/master | monsta | 1 | -17/+36 | |
clock help: fix legal page | |||||
2015-07-10 | clock help: fix legal page | raveit65 | 1 | -18/+37 | |
2015-07-10 | help: fixed broken links to feedback page | Monsta | 2 | -2/+2 | |
2015-07-01 | Merge pull request #319 from mate-desktop/drawer-fix | Martin Wimpress | 1 | -0/+3 | |
drawer: now opens fine after adding any applets and restarting session | |||||
2015-07-01 | drawer: now opens fine after adding any applets and restarting session | Monsta | 1 | -0/+3 | |
2015-06-29 | Merge pull request #318 from City-busz/fix-force-quit | monsta | 1 | -7/+27 | |
Fix Force-Quit panel applet to avoid hang with GTK3 | |||||
2015-06-29 | Merge pull request #317 from javispedro/issue-280 | monsta | 3 | -59/+1 | |
replace panel_xutils_set_window_type with gtk_window_set_type_hint closes https://github.com/mate-desktop/mate-panel/issues/280 | |||||
2015-06-29 | Fix Force-Quit panel applet | Balló György | 1 | -7/+27 | |
This patch implements handling of XInput2 extension events in the applet. Without this patch, the applet fails to recognize such events (either mouse click for killing application, or escape key for exiting), hence freezing the desktop. Also fix the event mask in call of gdk_device_grab() for keyboard. Author: Sébastien Villemot <[email protected]> http://bugs.debian.org/698740 | |||||
2015-06-28 | replace panel_xutils_set_window_type with gtk_window_set_type_hint | Javier | 3 | -59/+1 | |
Both functions have exactly the same semantics, so prefer the Gtk+ builtin. | |||||
2015-06-27 | Merge pull request #315 from NiceandGently/master | Martin Wimpress | 5 | -5/+5 | |
help: clock and fish: fix merge conflicts during build | |||||
2015-06-27 | help: clock and fish: fix merge conflicts during build | raveit65 | 5 | -5/+5 | |
2015-06-12 | Sync translations with transifex | mate-i18n | 5 | -124/+125 | |
2015-05-25 | Merge pull request #289 from rilian-la-te/simplify_image | monsta | 3 | -156/+5 | |
Remove change_background_for_widget from GTK3 build (it is useless.) | |||||
2015-05-21 | Merge pull request #304 from NiceandGently/master | monsta | 2 | -5/+5 | |
GTK3: fix typo in gtk_style_context mate-custom-panel-background | |||||
2015-05-21 | GTK3: fix typo in gtk_style_context mate-custom-panel-background | raveit65 | 2 | -5/+5 | |
2015-05-04 | Bump version to 1.10.0mate-panel-1.10.0 | Stefano Karapetsas | 2 | -2/+2 | |
2015-04-09 | Bump version to 1.9.91mate-panel-1.9.91 | Stefano Karapetsas | 2 | -2/+2 | |
2015-04-09 | Sync translations with transifex | mate-i18n | 10 | -287/+279 | |
2015-04-09 | Use g_path_is_absolute(). | Patrick Monnerat | 1 | -1/+1 | |
2015-04-09 | Resolve relative symlink of /etc/localtime This fixes wrong detection of ↵ | Patrick Monnerat | 1 | -0/+16 | |
system timezone under certain circumstances. Example: in Fedora 20, the environment is a follows: a) /etc/localtime symlinks --> ../usr/share/zoneinfo/Europe/Zurich b) /usr/share/zoneinfo contains files with more than 1 hardlink. In example, Europe/Zurich and Europe/Vaduz share the same i-node. - system_timezone_read_etc_localtime_softlink() because the link is relative. - The next algorithms fail because the targeted files do not exist. - system_timezone_read_etc_localtime_hardlink() succeeds, but finds Europe/Vaduz before Europe/Zurich. Thus the detected system timezone is wrong. By resolving a relative /etc/localtime symlink, this patch leads algorithm system_timezone_read_etc_localtime_softlink() to success and therefore proper detection of system timezone. Closes https://patch-diff.githubusercontent.com/raw/mate-desktop/mate-panel/pull/261.patch | |||||
2015-04-09 | Cancel background settings upon MatePanelAppletFrameDBus destruction. This ↵ | Patrick Monnerat | 1 | -2/+1 | |
is an attempt to fix https://github.com/mate-desktop/mate-panel/issues/214 | |||||
2015-03-19 | notification area: prevent crash | monsta | 1 | -1/+1 | |
from upstream commit: https://git.gnome.org/browse/gnome-panel/commit/applets/notification_area/na-tray-manager.c?id=2adbcc5308577d864b09062a3343b9f8dbcdcd7f Closes https://github.com/mate-desktop/mate-panel/pull/291 | |||||
2015-03-19 | gtk3: correct css theme selector widget name | Denis Gorodnichev | 1 | -1/+1 | |
Window Selector widget name is "PanelApplet-window-menu-applet-button". This fix 1px focus width Closes https://github.com/mate-desktop/mate-panel/pull/275 |