Skip to content

Commit

Permalink
fix toggle button position in linux
Browse files Browse the repository at this point in the history
  • Loading branch information
hashashin committed Oct 6, 2015
1 parent 4274146 commit 064563c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions notes/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión
// mediante el carácter '*', como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.12.1.0")]
[assembly: AssemblyFileVersion("0.12.1.0")]
[assembly: AssemblyVersion("0.12.2.0")]
[assembly: AssemblyFileVersion("0.12.2.0")]
4 changes: 2 additions & 2 deletions notes/notes.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// -------------------------------------------------------------------------------------------------
// notes.cs 0.12.1
// notes.cs 0.12.2
//
// Simple KSP plugin to take notes ingame.
// Copyright (C) 2015 Iván Atienza
Expand Down Expand Up @@ -590,7 +590,7 @@ private void NotesWindow(int windowId)
// Workaround for http://bugs.kerbalspaceprogram.com/issues/1230
if (Application.platform == RuntimePlatform.LinuxPlayer)
{
if (GUI.Toggle(new Rect(200f, 452f, 150f, 20f), _toggleInput, "Toggle input lock") != _toggleInput)
if (GUI.Toggle(new Rect(255f, 452f, 150f, 20f), _toggleInput, "Toggle input lock") != _toggleInput)
{
toggleLock();
}
Expand Down

0 comments on commit 064563c

Please sign in to comment.