mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
- A few additions and enhancements to the Install script.
- Removed the --disable-sound option to the configure script.
This commit is contained in:
11
src/dialog.c
11
src/dialog.c
@@ -1319,7 +1319,7 @@ wShowInfoPanel(WScreen *scr)
|
||||
strcat(buffer, " ");
|
||||
}
|
||||
|
||||
strcat(buffer, _("\nAdditional Support For: "));
|
||||
strcat(buffer, _("\nAdditional support for: "));
|
||||
{
|
||||
char *list[8];
|
||||
char buf[80];
|
||||
@@ -1337,9 +1337,6 @@ wShowInfoPanel(WScreen *scr)
|
||||
#ifdef OLWM_HINTS
|
||||
list[j++] = "OLWM";
|
||||
#endif
|
||||
#ifdef WSOUND
|
||||
list[j++] = _("Sound");
|
||||
#endif
|
||||
|
||||
buf[0] = 0;
|
||||
for (i = 0; i < j; i++) {
|
||||
@@ -1354,6 +1351,12 @@ wShowInfoPanel(WScreen *scr)
|
||||
strcat(buffer, buf);
|
||||
}
|
||||
|
||||
if (wPreferences.no_sound) {
|
||||
strcat(buffer, _("\nSound support disabled"));
|
||||
} else {
|
||||
strcat(buffer, _("\nSound support enabled"));
|
||||
}
|
||||
|
||||
|
||||
panel->infoL = WMCreateLabel(panel->win);
|
||||
WMResizeWidget(panel->infoL, 350, 75);
|
||||
|
||||
Reference in New Issue
Block a user