Make default window size a bit more useful

Currently, windows have a default size of 400x400 pixels. This is a
strange aspect ratio for a display, and it is also too small to be
useful for much. Since the default window size determines the initial
size of newly-enabled displays, it would be nice if we used a slightly
better size.
This commit is contained in:
Jonathon Jongsma 2014-09-03 13:54:47 -05:00
parent 29c8cadd40
commit a15bbac320

View File

@ -4,8 +4,8 @@
<object class="GtkAccelGroup" id="accelgroup"/>
<object class="GtkWindow" id="viewer">
<property name="can_focus">False</property>
<property name="default_width">400</property>
<property name="default_height">400</property>
<property name="default_width">1024</property>
<property name="default_height">768</property>
<signal name="delete-event" handler="virt_viewer_window_delete" swapped="no"/>
<child>
<object class="GtkVBox" id="viewer-box">