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