1
0
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:
dan
2001-11-15 02:52:51 +00:00
parent cc9abd6e7e
commit 9f62c660d7
3 changed files with 11 additions and 3 deletions

View File

@@ -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:

View File

@@ -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);
}

View File

@@ -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);
}