1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-04 21:04:18 +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

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