mirror of
https://github.com/gryf/wmaker.git
synced 2026-03-19 09:13:33 +01:00
WPrefs: fix some truncated texts
This patch is fixing some text truncation in the ergonomic and hot corner preference tabs.
This commit is contained in:
committed by
Carlos R. Mafra
parent
ddf0b20367
commit
92e1e9fb0b
@@ -257,7 +257,7 @@ static void createPanel(Panel * p)
|
||||
WMMoveWidget(panel->hcdescF, 15, 130);
|
||||
|
||||
panel->hcdescL = WMCreateLabel(panel->hcdescF);
|
||||
WMResizeWidget(panel->hcdescL, 200, 60);
|
||||
WMResizeWidget(panel->hcdescL, 200, 70);
|
||||
WMMoveWidget(panel->hcdescL, 15, 10);
|
||||
WMSetLabelText(panel->hcdescL,
|
||||
_("Instructions:\n\n"
|
||||
|
||||
@@ -284,14 +284,14 @@ static void createPanel(Panel * p)
|
||||
|
||||
/***************** Options ****************/
|
||||
panel->optF = WMCreateFrame(panel->box);
|
||||
WMResizeWidget(panel->optF, 255, 94);
|
||||
WMResizeWidget(panel->optF, 255, 96);
|
||||
WMMoveWidget(panel->optF, 15, 125);
|
||||
WMSetFrameTitle(panel->optF, _("AppIcon bouncing"));
|
||||
|
||||
for (i = 0; i < wlengthof(appicon_bouncing); i++) {
|
||||
panel->bounceB[i] = WMCreateSwitchButton(panel->optF);
|
||||
WMResizeWidget(panel->bounceB[i], 237, 26);
|
||||
WMMoveWidget(panel->bounceB[i], 9, 14 + i * 25);
|
||||
WMMoveWidget(panel->bounceB[i], 9, 16 + i * 26);
|
||||
WMSetButtonText(panel->bounceB[i], _(appicon_bouncing[i].label));
|
||||
|
||||
if (appicon_bouncing[i].default_value)
|
||||
@@ -306,7 +306,7 @@ static void createPanel(Panel * p)
|
||||
|
||||
/***************** Workspace border ****************/
|
||||
panel->borderF = WMCreateFrame(panel->box);
|
||||
WMResizeWidget(panel->borderF, 220, 75);
|
||||
WMResizeWidget(panel->borderF, 220, 77);
|
||||
WMMoveWidget(panel->borderF, 285, 144);
|
||||
WMSetFrameTitle(panel->borderF, _("Workspace border"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user