mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-19 03:45:47 +01:00
add LocaleGuards to 2 places where we save pane sizes (which are floating point values now)
This commit is contained in:
parent
a047d814f6
commit
79a9be434c
2 changed files with 2 additions and 0 deletions
|
|
@ -2579,6 +2579,7 @@ Editor::get_state ()
|
|||
{
|
||||
XMLNode* node = new XMLNode (X_("Editor"));
|
||||
char buf[32];
|
||||
LocaleGuard lg;
|
||||
|
||||
id().print (buf, sizeof (buf));
|
||||
node->add_property ("id", buf);
|
||||
|
|
|
|||
|
|
@ -1924,6 +1924,7 @@ Mixer_UI::get_state ()
|
|||
{
|
||||
XMLNode* node = new XMLNode (X_("Mixer"));
|
||||
char buf[128];
|
||||
LocaleGuard lg;
|
||||
|
||||
node->add_child_nocopy (Tabbable::get_state());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue