Browse Source

* Don't redraw the window when going to fullscreen. refs #668 and refs #751

This might not fix it, but it surely should eleviate the problem.
forwardport of [18324]
pull/2/head
Derk-Jan Hartman 20 years ago
parent
commit
ff5e7fa774
  1. 2
      modules/gui/macosx/vout.m

2
modules/gui/macosx/vout.m

@ -355,7 +355,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
new_frame.origin.x = topleftscreen.x;
new_frame.origin.y = topleftscreen.y - new_frame.size.height;
[o_window setFrame: new_frame display: YES];
[o_window setFrame: new_frame display: NO];
p_vout->i_changes |= VOUT_SIZE_CHANGE;
}

Loading…
Cancel
Save