summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-10-13 07:32:56 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2015-10-13 07:33:27 -0400
commitfbdb4c602ebd9be2c567825d27bc259cf96505f6 (patch)
tree6293a602757cb0492dbb7536086a69e7cbad04d4
parentef08cd6e4a6f0846f56c302c69e5eaf78525f100 (diff)
more corrections for mackie GUI layout
-rw-r--r--libs/surfaces/mackie/gui.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/surfaces/mackie/gui.cc b/libs/surfaces/mackie/gui.cc
index 80467d7eed..ac03e41e4e 100644
--- a/libs/surfaces/mackie/gui.cc
+++ b/libs/surfaces/mackie/gui.cc
@@ -190,9 +190,9 @@ MackieControlProtocolGUI::MackieControlProtocolGUI (MackieControlProtocol& p)
table.attach (*l, 0, 1, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
touch_sensitivity_scale.property_digits() = 0;
touch_sensitivity_scale.property_draw_value() = false;
- table.attach (touch_sensitivity_scale, row, row+1, 5, 6, AttachOptions(FILL|EXPAND), AttachOptions (0));
+ table.attach (touch_sensitivity_scale, 1, 2, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
row++;
- table.attach (recalibrate_fader_button, row, row+1, 6, 7, AttachOptions(FILL|EXPAND), AttachOptions (0));
+ table.attach (recalibrate_fader_button, 1, 2, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
row++;
@@ -797,7 +797,6 @@ MackieControlProtocolGUI::action_changed (const Glib::ustring &sPath, const Glib
void
MackieControlProtocolGUI::surface_combo_changed ()
{
- _cp.not_session_load();
_cp.set_device (_surface_combo.get_active_text(), false);
}