diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-06-01 17:08:47 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-06-01 17:08:47 +0200 |
commit | d0b6a8a4ec298024f14f704f9e40a6f9d324ccf3 (patch) | |
tree | 8645f5abd7b89361a1c5ab67e0195c84bc2ceab0 /app/bin/dlayer.c | |
parent | c2b8ba9336499ac930802e957f0d150399f3191e (diff) | |
parent | abf57604846230dc26afe8011aefb8e7bcc34333 (diff) |
Merge debian/watchdebian/1_5.1.2a-1
Diffstat (limited to 'app/bin/dlayer.c')
-rw-r--r-- | app/bin/dlayer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/bin/dlayer.c b/app/bin/dlayer.c index 925b1f8..70f613f 100644 --- a/app/bin/dlayer.c +++ b/app/bin/dlayer.c @@ -441,7 +441,7 @@ static paramData_t layerPLs[] = { #define I_LIST (0) { PD_DROPLIST, NULL, "layer", PDO_LISTINDEX|PDO_DLGNOLABELALIGN, (void*)250 }, #define I_NAME (1) - { PD_STRING, layerName, "name", PDO_NOPREF|PDO_STRINGLIMITLENGTH, (void*)(250-54), N_("Name"), 0, (void *)sizeof(layerName) }, + { PD_STRING, layerName, "name", PDO_NOPREF|PDO_STRINGLIMITLENGTH, (void*)(250-54), N_("Name"), 0, 0, sizeof(layerName) }, #define I_COLOR (2) { PD_COLORLIST, &layerColor, "color", PDO_NOPREF, NULL, N_("Color") }, #define I_VIS (3) @@ -545,7 +545,7 @@ static void DoLayerOp(void * data) UpdateLayerDlg(); if (layoutLayerChanged) { - MainProc(mainW, wResize_e, NULL); + MainProc(mainW, wResize_e, NULL, NULL); layoutLayerChanged = FALSE; changed = TRUE; SetWindowTitle(); @@ -773,7 +773,7 @@ DefaultLayerProperties(void) UpdateLayerDlg(); if (layoutLayerChanged) { - MainProc(mainW, wResize_e, NULL); + MainProc(mainW, wResize_e, NULL, NULL); layoutLayerChanged = FALSE; } } @@ -992,7 +992,7 @@ static void LayerOk(void * junk) } if (layoutLayerChanged) { - MainProc(mainW, wResize_e, NULL); + MainProc(mainW, wResize_e, NULL, NULL); } wHide(layerW); |