mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-21 13:28:05 +01:00
clean the fixes.
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
Changes since version 0.61.0:
|
Changes since version 0.61.0:
|
||||||
.............................
|
.............................
|
||||||
|
|
||||||
|
- fixed OPEN_MENU
|
||||||
|
- fixed crash when moving a shaded window with keyboard
|
||||||
- fixed problem with window shortcut assignment from the menu
|
- fixed problem with window shortcut assignment from the menu
|
||||||
- fixed problem with fonts in WINGs (Masahide -mac- NODA
|
- fixed problem with fonts in WINGs (Masahide -mac- NODA
|
||||||
<mac@flab.fujitsu.co.jp>)
|
<mac@flab.fujitsu.co.jp>)
|
||||||
|
|||||||
@@ -623,12 +623,10 @@ separateCommand(char *line, char ***file, char **command)
|
|||||||
|
|
||||||
count = WMGetBagItemCount(bag);
|
count = WMGetBagItemCount(bag);
|
||||||
if (count>0) {
|
if (count>0) {
|
||||||
int j;
|
|
||||||
*file = wmalloc(sizeof(char*)*(count+1));
|
*file = wmalloc(sizeof(char*)*(count+1));
|
||||||
i = count;
|
|
||||||
(*file)[count] = NULL;
|
(*file)[count] = NULL;
|
||||||
for (j = 0; j < count; j++) {
|
for (i = 0; i < count; i++) {
|
||||||
(*file)[j] = WMGetFromBag(bag, j);
|
(*file)[i] = WMGetFromBag(bag, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WMFreeBag(bag);
|
WMFreeBag(bag);
|
||||||
|
|||||||
Reference in New Issue
Block a user