From 558c2d6920f153efcfcb911b9cffc01470bc5aa8 Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Tue, 27 May 2025 22:27:04 +0900 Subject: [PATCH] Ensure the madness of Windows console noises do not plague the ears of the innocent --- src/gmc_gui.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gmc_gui.erl b/src/gmc_gui.erl index f040b84..a026f62 100644 --- a/src/gmc_gui.erl +++ b/src/gmc_gui.erl @@ -102,7 +102,7 @@ init(Prefs) -> Labels = [J("ID"), J("Target"), J("Maps/s"), J("Candidate"), J("Height"), J("BlockHash")], {Grid, [ID_C, DiffC, PerfC, CandyC, HeightC, BlockC]} = display_box(Frame, Labels), - Style = ?wxDEFAULT bor ?wxTE_MULTILINE bor ?wxTE_READONLY, + Style = ?wxTE_MULTILINE bor ?wxTE_READONLY, MessSz = wxStaticBoxSizer:new(?wxVERTICAL, Frame, [{label, J("Messages")}]), MessC = wxTextCtrl:new(Frame, ?wxID_ANY, [{style, Style}]), _ = wxStaticBoxSizer:add(MessSz, MessC, zxw:flags(wide)),