Skip to content

Commit

Permalink
Fix hint, slight layout adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
robob27 committed Nov 8, 2023
1 parent 2a5bac3 commit 068b6a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trackstop.lua
Original file line number Diff line number Diff line change
Expand Up @@ -270,13 +270,13 @@ end

ReorderStopsWindow = defclass(ReorderStopsWindow, widgets.Window)
ReorderStopsWindow.ATTRS {
frame={t=4,l=60,w=45, h=28},
frame={t=4,l=60,w=49, h=26},
frame_title='Reorder Stops',
resizable=true,
}

local SELECT_STOP_HINT = 'Select a stop to move'
local SELECT_ANOTHER_STOP_HINT = 'Select another stop on the same route'
local SELECT_ANOTHER_STOP_HINT = 'Select another stop to swap or same to cancel'


function ReorderStopsWindow:handleStopSelection(index, item)
Expand Down Expand Up @@ -360,7 +360,7 @@ function ReorderStopsWindow:init()
},
widgets.List{
view_id='routes',
frame={t=1,l=1},
frame={t=2,l=1},
choices={},
on_select=function(_, item)
if not item then return end
Expand Down

0 comments on commit 068b6a3

Please sign in to comment.