Skip to content

Commit

Permalink
Pretty settings: nested solumns
Browse files Browse the repository at this point in the history
Added some columns nesting to the "misc options" at the end of the
settings, to make it look much better. I might work more on this later,
but for now, I'm pretty contntent with the look of the settings page.
  • Loading branch information
LudwikJaniuk committed Jul 26, 2015
1 parent 1ef5b56 commit 2cc96ab
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions DevKeyboard.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ IfNotExist %A_AppData%\DevKeyboard\P.txt
IfNotExist %A_AppData%\DevKeyboard\OpenAuto.txt
FileAppend,, %A_AppData%\DevKeyboard\OpenAuto.txt



Gui, Add, Text,, Edit G:
Gui, Add, Text,, Edit H:
Gui, Add, Text,, Edit F:
Expand Down Expand Up @@ -172,16 +170,20 @@ Gui, Add, Edit, r1 vBEdit
Gui, Add, Edit, r1 vNEdit
Gui, Add, Edit, r1 vMEdit

Gui, Add, Text, ym, Edit Comma:
Gui, Add, Edit, r1 vCommaEdit

; +Section creates a "section", so further columning done with ys or ym
; (instead of ym and xm) works relative to only that section and the objects
; int it. In short, useful for nesting columns.
Gui, Add, Text, ym +Section, Edit Comma:
Gui, Add, Text,, Hold Down Time:


Gui, Add, Edit, r1 vCommaEdit ym
Gui, Add, Edit, R1 vTimeSetting

Gui, Add, Checkbox, vSemicolonEdit, Enable semicolon`nshortcut key
Gui, Add, Text, xs, DevKeyboard Version 1.4
Gui, Add, Checkbox, vSemicolonEdit, Enable semicolon shortcut key
Gui, Add, Checkbox, vOpenAutoEdit, Enable AutoStart
Gui, Add, Button, gYouPressed, Save
Gui, Add, Text,, DevKeyboard Version 1.4

FileRead, FileContents, %A_AppData%\DevKeyboard\time.txt
time = %FileContents%
Expand Down

0 comments on commit 2cc96ab

Please sign in to comment.