On 18.09.24 23:46, Will Godfrey wrote:
On Wed, 18 Sep 2024 23:27:43 +0200 ichthyo <p...@ichthyostega.de> wrote:
No, I mean the FL_choice (drop-down select box) to control the "mixer panel
layout". It is at the bottom of the first tab in the settings dialog. It is
populated with the two possible options, but there is no code to preselect
the entry that is currently active. Thus, if you open the settings dialog,
the drop-down seems to be empty. Only if you expand it, then you see the
two options.
Ah! Got it! I'd completely forgotten about that one. I never use it, I always
use the button in the mixer panel itself. Yes, that should be done,....
The following fix is more a guess, but it seems to work....
However, I do not really understand that code and I have no
idea if adding this here could have adverse effects
diff --git a/src/UI/MasterUI.fl b/src/UI/MasterUI.fl
index 4f6907fb..ceb0f7ce 100644
--- a/src/UI/MasterUI.fl
+++ b/src/UI/MasterUI.fl
@@ -3682,11 +3682,13 @@ Alan Calvert started the project}
{
towide->hide();
todeep->show();
+ configui->PanelLayout->value(1);
}
else if (tmp == 2)
{
towide->show();
todeep->hide();
+ configui->PanelLayout->value(0);
}
panelwindow->size_range(defW, defH, 0, 0, 0, 0, 1);
_______________________________________________
Yoshimi-devel mailing list
Yoshimi-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/yoshimi-devel