From a1d6e246a9b535f7a9fb6d5e437244b8ad7b5551 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 7 Feb 2019 03:36:40 +0100 Subject: [PATCH] fix little orphan SLOC not moved while extracting method --- src/u_gdb.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/u_gdb.pas b/src/u_gdb.pas index 9d332ab3..1092c9a8 100644 --- a/src/u_gdb.pas +++ b/src/u_gdb.pas @@ -1294,6 +1294,7 @@ end; procedure TGdbWidget.updateCpuViewVisibility; begin + GroupBox3.Visible := not fOptions.hideCpuView; if not GroupBox3.Visible then PageControl2.Align:= alClient else @@ -1440,7 +1441,6 @@ end; procedure TGdbWidget.optionsChangesApplied(sender: TObject); begin updateMenu; - GroupBox3.Visible := not fOptions.hideCpuView; updateCpuViewVisibility; end;