18 lines
290 B
Scala
18 lines
290 B
Scala
package com.ianonavy.netflixsync
|
|
|
|
import scala.swing._
|
|
|
|
|
|
/**
|
|
* Main Swing instance
|
|
*/
|
|
object Main extends SimpleSwingApplication {
|
|
|
|
def top = new MainFrame {
|
|
preferredSize = new Dimension(196, 196)
|
|
title = "Netflix Sync"
|
|
resizable = false
|
|
contents = new MainPanel
|
|
}
|
|
|
|
} |