13
0

Make engine dialog non-resizable (remove resize workarounds)

This commit is contained in:
Robin Gareus 2022-12-30 21:55:35 +01:00
parent 24597de7a2
commit 1ad22e9ce9
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -133,6 +133,7 @@ EngineControl::EngineControl ()
AttachOptions xopt = AttachOptions (FILL | EXPAND); AttachOptions xopt = AttachOptions (FILL | EXPAND);
int row; int row;
set_resizable (false);
set_name (X_("AudioMIDISetup")); set_name (X_("AudioMIDISetup"));
/* the backend combo is the one thing that is ALWAYS visible */ /* the backend combo is the one thing that is ALWAYS visible */
@ -1079,7 +1080,6 @@ EngineControl::backend_changed ()
if (!ignore_changes) { if (!ignore_changes) {
maybe_display_saved_state (); maybe_display_saved_state ();
} }
resize (1, 1); // shrink window
} }
void void
@ -2803,7 +2803,6 @@ EngineControl::on_monitor_expand ()
#else #else
lbl_monitor_model.hide (); lbl_monitor_model.hide ();
monitor_model_combo.hide (); monitor_model_combo.hide ();
resize (1, 1); // shrink window
#endif #endif
} }
} }
@ -2833,7 +2832,6 @@ EngineControl::on_latency_expand ()
lbl_midi_system.hide (); lbl_midi_system.hide ();
midi_option_combo.hide (); midi_option_combo.hide ();
midi_devices_button.hide (); midi_devices_button.hide ();
resize (1, 1); // shrink window
} }
} }