head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2003.02.10.19.53.47; author swiergot; state Exp; branches; next ; desc @@ 1.1 log @- Added X_func_dynload.diff patch that makes it possible to dynamically load X11 stuff on demand. - Added patch-4_6_0-exe-first.diff patch that makes it possible to place exe files first just after directories in a panel. - Added src_option_c_PANEL_OPTIONS_bug.diff that fixes a small bug. - Note: this combination of patches hasn't been tested yet. @ text @--- mc-cvs-4.6.0-030207/src/option.c Sat Dec 7 20:16:30 2002 +++ mc-draft-4.6.0-030207/src/option.c Sun Feb 9 11:16:02 2003 @@@@ -229,7 +230,7 @@@@ /* Add checkboxes for "panel options" */ for (i = 0; i < PANEL_OPTIONS; i++) { check_options[i + OTHER_OPTIONS].widget = - check_new (PY + (6 - i), PX + 2, XTRACT (i + OTHER_OPTIONS)); + check_new (PY + (PANEL_OPTIONS - i), PX + 2, XTRACT (i + OTHER_OPTIONS)); add_widget (conf_dlg, check_options[i + OTHER_OPTIONS].widget); } } @ .