mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
[stage-x11] Set the default size differently
We want to set the default size without triggering the layout machinary, so change the window creation process slightly so we start with a 640x480 window.
This commit is contained in:
parent
b968defae9
commit
c82c94e620
@ -1196,9 +1196,6 @@ clutter_stage_init (ClutterStage *self)
|
||||
clutter_actor_set_reactive (CLUTTER_ACTOR (self), TRUE);
|
||||
clutter_stage_set_title (self, g_get_prgname ());
|
||||
clutter_stage_set_key_focus (self, NULL);
|
||||
|
||||
/* Set the default size */
|
||||
clutter_actor_set_size (CLUTTER_ACTOR (self), 640, 480);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -171,7 +171,9 @@ clutter_stage_glx_realize (ClutterStageWindow *stage_window)
|
||||
}
|
||||
|
||||
/* no user resize.. */
|
||||
clutter_stage_x11_fix_window_size (stage_x11, -1, -1);
|
||||
clutter_stage_x11_fix_window_size (stage_x11,
|
||||
stage_x11->xwin_width,
|
||||
stage_x11->xwin_height);
|
||||
clutter_stage_x11_set_wm_protocols (stage_x11);
|
||||
|
||||
/* ask for a context; a no-op, if a context already exists */
|
||||
|
@ -657,8 +657,8 @@ static void
|
||||
clutter_stage_x11_init (ClutterStageX11 *stage)
|
||||
{
|
||||
stage->xwin = None;
|
||||
stage->xwin_width = 1;
|
||||
stage->xwin_height = 1;
|
||||
stage->xwin_width = 640;
|
||||
stage->xwin_height = 480;
|
||||
|
||||
stage->wm_state = STAGE_X11_WITHDRAWN;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user