From ccd6e43aee74f4761139c2cc71d6bfeb0696f26a Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 3 Feb 2015 16:21:36 +0100 Subject: [PATCH] fixed bug with game buttons in tape area not properly redrawn --- ChangeLog | 1 + src/tape.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog b/ChangeLog index b374cd42..4e1cad50 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ 2015-02-03 * finished configurability of tape date and time display positions + * fixed bug with game buttons in tape area not properly redrawn 2015-02-02 * fixed configurability of editor element palette (for columns != 4) diff --git a/src/tape.c b/src/tape.c index 6ef7cf4c..8613f9ba 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1297,6 +1297,9 @@ void UnmapTapeButtons() for (i = 0; i < NUM_TAPE_BUTTONS; i++) UnmapGadget(tape_gadget[i]); + + if (tape.show_game_buttons) + UnmapGameButtons(); } static void HandleTapeButtonsExt(int id) -- 2.34.1