1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-17 14:45:49 +01:00

- Fixed a flickering problem with the scrollview.

- Use of uppercase letters when getting keysyms
This commit is contained in:
dan
2000-11-16 18:07:12 +00:00
parent 2d20abd00e
commit 899226207d
3 changed files with 13 additions and 7 deletions

View File

@@ -426,7 +426,8 @@ fillModifierPopUp(WMPopUpButton *pop)
ptr = strstr(tmp, "_R");
if (ptr)
*ptr = 0;
sprintf(buffer, "%s (%s)", modifierNames[j], tmp);
sprintf(buffer, "%s (%s)", modifierNames[j], tmp);
/*sprintf(buffer, "%s", tmp);*/
WMAddPopUpButtonItem(pop, buffer);
for (i=k+1; i<a; i++) {
if (array[i] == NULL)