mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
- Fixed aspect of window list menu (window name was too close to workspace
indicator) - Fixed menu panel in WPrefs.app. Explanatory text did not fit into the label
This commit is contained in:
@@ -99,6 +99,9 @@ Changes since version 0.80.2:
|
|||||||
(Peter Zijlstra <a.p.zijlstra@chello.nl>)
|
(Peter Zijlstra <a.p.zijlstra@chello.nl>)
|
||||||
- Fixed the 'KDE omnipresent' bug.
|
- Fixed the 'KDE omnipresent' bug.
|
||||||
- Fixed bug with focusing a deminiaturized window with sloppy focus mode
|
- Fixed bug with focusing a deminiaturized window with sloppy focus mode
|
||||||
|
- Fixed aspect of window list menu (window name was too close to workspace
|
||||||
|
indicator)
|
||||||
|
- Fixed menu panel in WPrefs.app. Explanatory text did not fit into the label
|
||||||
|
|
||||||
|
|
||||||
Changes since version 0.80.1:
|
Changes since version 0.80.1:
|
||||||
|
|||||||
@@ -887,13 +887,11 @@ createPanel(_Panel *p)
|
|||||||
WMMoveWidget(panel->quickB, 10, 120);
|
WMMoveWidget(panel->quickB, 10, 120);
|
||||||
WMSetButtonText(panel->quickB, _("Do not confirm action."));
|
WMSetButtonText(panel->quickB, _("Do not confirm action."));
|
||||||
WMSetButtonAction(panel->quickB, buttonClicked, panel);
|
WMSetButtonAction(panel->quickB, buttonClicked, panel);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
label = WMCreateLabel(panel->optionsF);
|
label = WMCreateLabel(panel->optionsF);
|
||||||
WMResizeWidget(label, width - 10, FRAME_HEIGHT - 50);
|
WMResizeWidget(label, width+5, FRAME_HEIGHT - 50);
|
||||||
WMMoveWidget(label, 10, 20);
|
WMMoveWidget(label, 7, 20);
|
||||||
WMSetLabelText(label,
|
WMSetLabelText(label,
|
||||||
_("Instructions:\n\n"
|
_("Instructions:\n\n"
|
||||||
" - drag items from the left to the menu to add new items\n"
|
" - drag items from the left to the menu to add new items\n"
|
||||||
|
|||||||
@@ -1910,7 +1910,7 @@ wShowGNUstepPanel(WScreen *scr)
|
|||||||
panel->scr = scr;
|
panel->scr = scr;
|
||||||
|
|
||||||
panel->win = WMCreateWindow(scr->wmscreen, "About GNUstep");
|
panel->win = WMCreateWindow(scr->wmscreen, "About GNUstep");
|
||||||
WMResizeWidget(panel->win, 325, 200);
|
WMResizeWidget(panel->win, 325, 205);
|
||||||
|
|
||||||
pixmap = WMCreatePixmap(scr->wmscreen, 130, 130,
|
pixmap = WMCreatePixmap(scr->wmscreen, 130, 130,
|
||||||
WMScreenDepth(scr->wmscreen), True);
|
WMScreenDepth(scr->wmscreen), True);
|
||||||
@@ -1940,8 +1940,8 @@ wShowGNUstepPanel(WScreen *scr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
panel->textL = WMCreateLabel(panel->win);
|
panel->textL = WMCreateLabel(panel->win);
|
||||||
WMResizeWidget(panel->textL, 275, 130);
|
WMResizeWidget(panel->textL, 305, 140);
|
||||||
WMMoveWidget(panel->textL, 30, 50);
|
WMMoveWidget(panel->textL, 10, 50);
|
||||||
WMSetLabelTextAlignment(panel->textL, WARight);
|
WMSetLabelTextAlignment(panel->textL, WARight);
|
||||||
WMSetLabelImagePosition(panel->textL, WIPOverlaps);
|
WMSetLabelImagePosition(panel->textL, WIPOverlaps);
|
||||||
WMSetLabelText(panel->textL,
|
WMSetLabelText(panel->textL,
|
||||||
|
|||||||
@@ -571,7 +571,7 @@ wMenuRealize(WMenu *menu)
|
|||||||
text = menu->entries[i]->rtext;
|
text = menu->entries[i]->rtext;
|
||||||
if (text)
|
if (text)
|
||||||
rwidth = WMWidthOfString(scr->menu_entry_font, text, strlen(text))
|
rwidth = WMWidthOfString(scr->menu_entry_font, text, strlen(text))
|
||||||
+ 5;
|
+ 10;
|
||||||
else if (menu->entries[i]->cascade>=0)
|
else if (menu->entries[i]->cascade>=0)
|
||||||
rwidth = 16;
|
rwidth = 16;
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user