~codygarver/absolem/absolem

« back to all changes in this revision

Viewing changes to Info.vala

  • Committer: Cody Garver
  • Date: 2011-07-26 05:42:55 UTC
  • Revision ID: codygarver@gmail.com-20110726054255-my2bzuax3rak5xid
Clean up menu items

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
public const int INFO_MIN_WIDTH = 280;
8
8
public const int INFO_MIN_HEIGHT = 320;
9
9
 
10
 
// pretty sure this needs to be
11
 
// public class InfoWindow : Gtk.Dialog {
12
 
public class InfoWindow : Gtk.Window {
 
10
public class InfoWindow : Gtk.Dialog {
13
11
 
14
12
        private VBox vbox;
15
13
 
24
22
 
25
23
        set_size_request(INFO_MIN_WIDTH, INFO_MIN_HEIGHT);
26
24
 
27
 
        this.position = Gtk.WindowPosition.CENTER;
 
25
        this.position = Gtk.DialogPosition.CENTER;
28
26
 
29
27
        // create the interface
30
28
        this.vbox = new VBox (false, 0);