This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tailor/lib/tailor/GUI.rb
Andrew Kesterson 1b708359a6 For #8 : Tileset editor window mostly working
* 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
2014-05-13 21:16:50 -07:00

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