Skip to content
Snippets Groups Projects
Commit 72a840b0 authored by deuce's avatar deuce
Browse files

From the XCurses manpage, regarding mouse functions:

"ALL  DESCRIPTIONS  ARE  GUESSES.  I DON'T KNOW ANYONE WHO KNOWS EXACTLY WHAT THESE FUNCTIONS DO!"

Right, like I'm going to support this?
parent 282069ad
No related branches found
No related tags found
No related merge requests found
...@@ -278,10 +278,14 @@ int uifcini32(uifcapi_t* uifcapi) ...@@ -278,10 +278,14 @@ int uifcini32(uifcapi_t* uifcapi)
api->esc_delay=25; api->esc_delay=25;
#ifdef PDCURSES #ifdef PDCURSES
if(mouse_set(BUTTON1_CLICKED|BUTTON3_CLICKED)==0) /*
api->mode|=UIFC_MOUSE; * "ALL DESCRIPTIONS ARE GUESSES. I DON'T KNOW ANYONE WHO KNOWS EXACTLY WHAT THESE FUNCTIONS DO!"
else *
mouse_set(0); * if(mouse_set(BUTTON1_CLICKED|BUTTON3_CLICKED)==0)
* api->mode|=UIFC_MOUSE;
* else
* mouse_set(0);
*/
#endif #endif
#ifdef __unix__ #ifdef __unix__
initciowrap(api->mode); initciowrap(api->mode);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment