mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-04 04:44:16 +01:00
- Changelog update about latest fixes.
- Applied patch to fix gnome problems.
This commit is contained in:
@@ -10,6 +10,9 @@ Changes since version 0.70.0:
|
||||
- Updated slovak .po files (Jan Tomka <judas@linux.sk>)
|
||||
- Added "Save workspace state" switch button on the exit confirmation panel
|
||||
(based on a patch sent by Jan Tomka <judas@linux.sk>)
|
||||
- Fixed WPrefs crash when clicking on the menu editor to keep the current menu
|
||||
(Alexey Voinov <voins@voins.program.ru>)
|
||||
- Added patch to fix some gnome issues (Les Schaffer <schaffer@optonline.net>)
|
||||
|
||||
|
||||
Changes since version 0.65.1:
|
||||
|
||||
@@ -900,7 +900,8 @@ createPanel(_Panel *p)
|
||||
|
||||
pos.y = WMAX(pos.y - 100, 0);
|
||||
|
||||
if( panel->menu ) WEditMenuShowAt(panel->menu, pos.x, pos.y);
|
||||
if (panel->menu)
|
||||
WEditMenuShowAt(panel->menu, pos.x, pos.y);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1807,14 +1808,16 @@ storeData(_Panel *panel)
|
||||
static void
|
||||
showMenus(_Panel *panel)
|
||||
{
|
||||
if( panel->menu ) WEditMenuUnhide(panel->menu);
|
||||
if (panel->menu)
|
||||
WEditMenuUnhide(panel->menu);
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
hideMenus(_Panel *panel)
|
||||
{
|
||||
if( panel->menu ) WEditMenuHide(panel->menu);
|
||||
if (panel->menu)
|
||||
WEditMenuHide(panel->menu);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -197,6 +197,8 @@ wGNOMEInitStuff(WScreen *scr)
|
||||
WMAddNotificationObserver(observer, NULL, WMNChangedStacking, NULL);
|
||||
WMAddNotificationObserver(observer, NULL, WMNChangedName, NULL);
|
||||
|
||||
WMAddNotificationObserver(wsobserver, NULL, WMNWorkspaceCreated, NULL);
|
||||
WMAddNotificationObserver(wsobserver, NULL, WMNWorkspaceDestroyed, NULL);
|
||||
WMAddNotificationObserver(wsobserver, NULL, WMNWorkspaceChanged, NULL);
|
||||
WMAddNotificationObserver(wsobserver, NULL, WMNWorkspaceNameChanged, NULL);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user