Mercurial > mplayer.hg
changeset 35781:454b0d784d95
Add comment on order of window initialization.
author | ib |
---|---|
date | Fri, 25 Jan 2013 12:43:54 +0000 |
parents | 4073fff5efc7 |
children | e30d541b3ea6 |
files | gui/interface.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/interface.c Fri Jan 25 12:26:31 2013 +0000 +++ b/gui/interface.c Fri Jan 25 12:43:54 2013 +0000 @@ -191,7 +191,7 @@ mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[interface] videoWindow ID: 0x%x\n", (int)guiApp.videoWindow.WindowID); uiMainInit(); // main window must be first! - uiVideoInit(); + uiVideoInit(); // video window must be second! uiPlaybarInit(); uiMenuInit();