[Mplayerplug-in-cvs] mplayerplug-in/Source plugin-ui.cpp, 1.256, 1.257
Brought to you by:
kdekorte
From: Kevin D. <kde...@us...> - 2009-05-04 00:03:23
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25221/Source Modified Files: plugin-ui.cpp Log Message: fix compile issues Index: plugin-ui.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-ui.cpp,v retrieving revision 1.256 retrieving revision 1.257 diff -C2 -d -r1.256 -r1.257 *** plugin-ui.cpp 19 Sep 2008 12:39:18 -0000 1.256 --- plugin-ui.cpp 4 May 2009 00:03:19 -0000 1.257 *************** *** 1135,1139 **** if (instance->panel_height > 16) instance->panel_height = 16; ! if (instance->panel_height <= 0) if (instance->showcontrols) { instance->panel_height = 16; --- 1135,1139 ---- if (instance->panel_height > 16) instance->panel_height = 16; ! if (instance->panel_height <= 0) { if (instance->showcontrols) { instance->panel_height = 16; *************** *** 1141,1144 **** --- 1141,1145 ---- instance->panel_height = 0; } + } if (DEBUG) { printf("drawing panel\n height = %i panel= %i\n", *************** *** 3363,3366 **** --- 3364,3368 ---- gtk_widget_show(instance->src_event_box); } + return FALSE; } |