define NCURSES_MOUSE_VERSION if pdcurses is used

master
Andrzej Rybczak 17 years ago
parent 487b2fc1c9
commit 20b0bcc85e
  1. 4
      src/ncmpcpp.cpp
  2. 4
      src/window.h

@ -378,11 +378,7 @@ int main(int argc, char *argv[])
} }
else if (Config.mouse_support && input == KEY_MOUSE) else if (Config.mouse_support && input == KEY_MOUSE)
{ {
# ifdef USE_PDCURSES
nc_getmouse(&mouse_event);
# else
getmouse(&mouse_event); getmouse(&mouse_event);
# endif // USE_PDCURSES
if (mouse_event.bstate & BUTTON1_PRESSED if (mouse_event.bstate & BUTTON1_PRESSED
&& mouse_event.y == LINES-(Config.statusbar_visibility ? 2 : 1) && mouse_event.y == LINES-(Config.statusbar_visibility ? 2 : 1)
) // progressbar ) // progressbar

@ -25,6 +25,10 @@
#include <config.h> #include <config.h>
#endif #endif
#ifdef USE_PDCURSES
# define NCURSES_MOUSE_VERSION 2
#endif
#include "curses.h" #include "curses.h"
#include <deque> #include <deque>

Loading…
Cancel
Save