* Tileset editor window appears with notes, buttons, tilesetproperties, etc. * Introduces a skeleton and placeholder for TilesetDisplay. * The text controls on the right aren't autosizing correctly, and they're too small Midstream on #8 - sizing problems. midstrean on #8 - sizers mostly fixed, still some min sizes to set Resizing works as expected now and minimum sizes enforced, moved the buttons for #8 For #8 midstream, all resizing works as expected now
15 lines
281 B
Ruby
15 lines
281 B
Ruby
require 'wx'
|
|
require 'tailor/GUI/MainWindow'
|
|
require 'tailor/GUI/TilesetEditor'
|
|
|
|
module Tailor
|
|
module GUI
|
|
class Application < Wx::App
|
|
def on_init
|
|
#Tailor::GUI::MainWindow.new
|
|
Tailor::GUI::TilesetEditor.new(nil, -1, 'Tailor')
|
|
end
|
|
end
|
|
end
|
|
end
|