Skip to content

Commit

Permalink
Vkeybd: default to single-row QWERTY binding
Browse files Browse the repository at this point in the history
  • Loading branch information
x42 committed Dec 12, 2019
1 parent c3a27fa commit 5324587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtk2_ardour/virtual_keyboard_window.cc
Expand Up @@ -58,7 +58,7 @@ VirtualKeyboardWindow::VirtualKeyboardWindow ()
{
_piano.set_flags (Gtk::CAN_FOCUS);

_piano.set_keyboard_layout (APianoKeyboard::QWERTY);
_piano.set_keyboard_layout (APianoKeyboard::S_QWERTY);
_piano.set_annotate_octave (true);
_piano.set_grand_piano_highlight (false);
_piano.set_annotate_layout (true);
Expand All @@ -84,7 +84,7 @@ VirtualKeyboardWindow::VirtualKeyboardWindow ()
_keyboard_layout.AddMenuElem (MenuElem (_("QWERTZ Single"), sigc::bind (sigc::mem_fun (*this, &VirtualKeyboardWindow::select_keyboard_layout), "QWERTZ Single")));

Gtkmm2ext::set_size_request_to_display_given_text_width (_keyboard_layout, _("QWERTZ Single"), 2, 0); // Longest Text
_keyboard_layout.set_active (_("QWERTY"));
_keyboard_layout.set_active (_("QWERTY Single"));
_midi_channel.set_active ("1");
_transpose_output.set_active ("0");

Expand Down

0 comments on commit 5324587

Please sign in to comment.