# HG changeset patch # User Andrew McPherson # Date 1409141907 -3600 # Node ID 518027b4a3ebd9a6ca85da976290eca8b13f5e83 # Parent 73576f49ad1c81f91e708eb3cc223afb82e2ef57 Pull the windows off the top-left corner (not yet a nice fix that tiles them neatly); also a GUI bugfix on Control extended editor. diff -r 73576f49ad1c -r 518027b4a3eb Source/GUI/MappingExtendedEditorWindow.h --- a/Source/GUI/MappingExtendedEditorWindow.h Sat Aug 23 23:46:38 2014 +0100 +++ b/Source/GUI/MappingExtendedEditorWindow.h Wed Aug 27 13:18:27 2014 +0100 @@ -41,6 +41,7 @@ } // Show window + setTopLeftPosition(60,60); setVisible(true); } diff -r 73576f49ad1c -r 518027b4a3eb Source/GUI/PreferencesWindow.h --- a/Source/GUI/PreferencesWindow.h Sat Aug 23 23:46:38 2014 +0100 +++ b/Source/GUI/PreferencesWindow.h Wed Aug 27 13:18:27 2014 +0100 @@ -34,6 +34,7 @@ setResizable(false, false); // Don't show window yet + setTopLeftPosition(60,60); setVisible(false); // Start a timer that will keep the interface in sync with the application diff -r 73576f49ad1c -r 518027b4a3eb Source/Mappings/Control/TouchkeyControlMappingExtendedEditor.cpp --- a/Source/Mappings/Control/TouchkeyControlMappingExtendedEditor.cpp Sat Aug 23 23:46:38 2014 +0100 +++ b/Source/Mappings/Control/TouchkeyControlMappingExtendedEditor.cpp Wed Aug 27 13:18:27 2014 +0100 @@ -28,7 +28,7 @@ //============================================================================== TouchkeyControlMappingExtendedEditor::TouchkeyControlMappingExtendedEditor (TouchkeyControlMappingFactory& factory) - : factory_(factory) + : factory_(factory), typeWasAbsolute_(false) { addAndMakeVisible (inputRangeLowEditor = new TextEditor ("range low text editor")); inputRangeLowEditor->setMultiLine (false);