mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-07 06:14:13 +01:00
added patch with bugfixes for wings/textfield/panel exit with escape/bag etc
changed iconchooser to center icons/text updated po files
This commit is contained in:
@@ -49,9 +49,11 @@ WMAppendBag(WMBag *bag, WMBag *appendedBag)
|
||||
bag->items = wrealloc(bag->items,
|
||||
sizeof(void*) * (bag->size+appendedBag->count));
|
||||
|
||||
memcpy(bag->items + bag->count, appendedBag->items, appendedBag->count);
|
||||
memcpy(bag->items + bag->count, appendedBag->items,
|
||||
sizeof(void*) * appendedBag->count);
|
||||
|
||||
bag->count += appendedBag->count;
|
||||
bag->size += appendedBag->count;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user