Skip to content

Commit

Permalink
Rise template coordinate limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadido3 committed Aug 14, 2017
1 parent 1ecf448 commit a26ecf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Includes/Templates.pbi
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,9 @@ Module Templates
Y + 10

Window\Text [0] = TextGadget(#PB_Any, 10, Y, 100, 20, "X:", #PB_Text_Right)
Window\Spin [0] = SpinGadget(#PB_Any, 120, Y, 100, 20, -10000, 10000, #PB_Spin_Numeric) : Y + 20
Window\Spin [0] = SpinGadget(#PB_Any, 120, Y, 100, 20, -1000000, 1000000, #PB_Spin_Numeric) : Y + 20
Window\Text [1] = TextGadget(#PB_Any, 10, Y, 100, 20, "Y:", #PB_Text_Right)
Window\Spin [1] = SpinGadget(#PB_Any, 120, Y, 100, 20, -10000, 10000, #PB_Spin_Numeric) : Y + 20
Window\Spin [1] = SpinGadget(#PB_Any, 120, Y, 100, 20, -1000000, 1000000, #PB_Spin_Numeric) : Y + 20
Window\Text [2] = TextGadget(#PB_Any, 10, Y, 100, 20, "File:", #PB_Text_Right)
Window\String = StringGadget(#PB_Any, 120, Y, Width - 130, 20, "") : Y + 20
For i = 0 To #Reorder_Amount-1
Expand Down

0 comments on commit a26ecf4

Please sign in to comment.