mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-28 07:58:08 +01:00
turn off broken color sel until have time to fix
This commit is contained in:
parent
233479a959
commit
92fb9fb9b2
1 changed files with 8 additions and 1 deletions
|
@ -237,7 +237,7 @@ myChooseColor( CEAppGlobals* globals, HWND hwnd, COLORREF* cref )
|
|||
return !state.cancelled;
|
||||
} /* myChooseColor */
|
||||
|
||||
#endif
|
||||
#endif /* MY_COLOR_SEL */
|
||||
|
||||
typedef struct ColorsDlgState {
|
||||
|
||||
|
@ -400,6 +400,12 @@ ColorsDlg( HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam )
|
|||
XP_Bool
|
||||
ceDoColorsEdit( HWND hwnd, CEAppGlobals* globals, COLORREF* colors )
|
||||
{
|
||||
#if 1
|
||||
MessageBox( globals->hWnd,
|
||||
L"Color selection will be fixed in the next Beta.",
|
||||
L"Sorry...", MB_OK );
|
||||
return XP_FALSE;
|
||||
#else
|
||||
ColorsDlgState state;
|
||||
|
||||
XP_MEMSET( &state, 0, sizeof(state) );
|
||||
|
@ -417,4 +423,5 @@ ceDoColorsEdit( HWND hwnd, CEAppGlobals* globals, COLORREF* colors )
|
|||
}
|
||||
|
||||
return !state.cancelled;
|
||||
#endif
|
||||
} /* ceDoColorsEdit */
|
||||
|
|
Loading…
Add table
Reference in a new issue