KTSXR2MUTVMBEU7BGN5CHXL5UP6PPA6TTHN4CON7T67YWGZB72VAC
UOTHQWM74AFOCPGQKKPLZXRI5HQFH3SRGI336AVZRGWPR6P256EAC
KEFZWDCOCLPTLSZJKRV4VYAHRITV5T33YKG2VGT332YAUCOBS3EAC
OTIBCAUJ3KDQJLVDN3A536DLZGNRYMGJLORZVR3WLCGXGO6UGO6AC
4QWICBYVZ3ZQU6L7VUM5SCNYRIWXAEOO4ZTE73KECL53NBBADMGQC
R6GUSTBY5ZHR7E46DSIDQDNZDJI6QMZQDC7RPQMQWLGWQKXU6HVQC
UH4YWHW5NDKNR7RS664UG4PRJNZIPNWAD5JWBEUB22JHOY2SWZKAC
function tenonauger.mousereleased(State, x,y, mouse_button)
function tenonauger.make_room_for_spokecone()
print('resizing tenonauger side')
Tenonauger_state.left = App.screen.width/2 + Margin_left
Tenonauger_state.right = App.screen.width - Margin_right
Text.redraw_all(Tenonauger_state)
-- tenon auger side is already open; expand spokecone side as well
function expand_spokecone()
if Show.spokecone then return end
Show.spokecone = true
-- maximize window
love.window.setMode(0, 0) -- maximize
App.screen.width, App.screen.height, App.screen.flags = love.window.getMode()
-- shrink height slightly to account for window decoration
App.screen.height = App.screen.height-100
App.screen.flags.resizable = true
App.screen.flags.minwidth = math.min(App.screen.width, 200)
App.screen.flags.minheight = math.min(App.screen.width, 200)
love.window.setMode(App.screen.width, App.screen.height, App.screen.flags)
--
tenonauger.make_room_for_spokecone()
end