From 91c06da98efcb8ee5be8f779473de0fd78391551 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Fri, 11 Mar 2016 13:46:55 +0100 Subject: [PATCH] Fix file-type combobox of Xaw file-selector dialog The list of combobox labels got out of phase with the list of values after 'Images', because the value for the latter was missing. --- dialogs.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dialogs.c b/dialogs.c index 104f6c2..9def05c 100644 --- a/dialogs.c +++ b/dialogs.c @@ -2479,7 +2479,7 @@ GetHelpText (FILE *f, char *name) if(p - text > 9900) break; } *p = NULLCHAR; - DisplayNote(text); + ErrorPopUp("Help", text, FALSE); return; } } @@ -2892,6 +2892,7 @@ static char *Extensions[] = { ".trn", ".bin", ".wav", +".png", ".ini", ".log", "", -- 1.7.0.4