Larger grid
This commit is contained in:
parent
500132a816
commit
3e504310a9
|
@ -28,7 +28,7 @@ class EditorFrame(val map: GMap) extends JFrame("Level Editor") with ChangeListe
|
||||||
final private[editor] val group = new ButtonGroup
|
final private[editor] val group = new ButtonGroup
|
||||||
private var selectedSprite = null: SpriteComp
|
private var selectedSprite = null: SpriteComp
|
||||||
|
|
||||||
this.setSize(600, 600)
|
this.setSize(1000, 1000)
|
||||||
this.setPreferredSize(getSize)
|
this.setPreferredSize(getSize)
|
||||||
this.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE)
|
this.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE)
|
||||||
this.setExtendedState(Frame.MAXIMIZED_BOTH)
|
this.setExtendedState(Frame.MAXIMIZED_BOTH)
|
||||||
|
|
|
@ -33,7 +33,7 @@ class GameFrame(val map: RawMap) extends JFrame("Jeu") {
|
||||||
final private var rewardLabel = null: JLabel
|
final private var rewardLabel = null: JLabel
|
||||||
final private var winLabel = null: JLabel
|
final private var winLabel = null: JLabel
|
||||||
|
|
||||||
this.setSize(600, 600)
|
this.setSize(1000, 1000)
|
||||||
this.setPreferredSize(getSize)
|
this.setPreferredSize(getSize)
|
||||||
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE)
|
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE)
|
||||||
this.setExtendedState(Frame.MAXIMIZED_BOTH)
|
this.setExtendedState(Frame.MAXIMIZED_BOTH)
|
||||||
|
|
Loading…
Reference in New Issue