Skip to content

Commit

Permalink
Merged in woodyhawthorne/ugfx/fixes (pull request qmk#20)
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
Joel Bodenmann committed Nov 15, 2015
2 parents 10c047d + 9ea93ff commit 697211a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/gmisc/gmisc.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ typedef int32_t fixed;
/**
* @brief The famous number pi
*/
#ifndef PI
#define PI 3.1415926535897932384626433832795028841971693993751
#endif

/**
* @brief pi as a fixed point
Expand Down
2 changes: 1 addition & 1 deletion src/gwin/gwin_class.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ bool_t _gwinWMAdd(GHandle gh, const GWindowInit *pInit);
*/
void _gwinSendEvent(GHandle gh, GEventType type);

#if (GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD) || defined(__DOXYGEN__)
#if ((GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD) || GWIN_NEED_KEYBOARD) || defined(__DOXYGEN__)
/**
* @brief Move the focus off the current focus window.
*
Expand Down
4 changes: 2 additions & 2 deletions src/gwin/gwin_widget.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// Our listener for events for widgets
static GListener gl;

#if GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD
#if (GFX_USE_GINPUT && GINPUT_NEED_KEYBOARD) || GWIN_NEED_KEYBOARD
// Our current focus window
static GHandle _widgetInFocus;
#endif
Expand Down Expand Up @@ -366,7 +366,7 @@ void _gwidgetInit(void)
geventRegisterCallback(&gl, gwidgetEvent, 0);
geventAttachSource(&gl, ginputGetMouse(GMOUSE_ALL_INSTANCES), GLISTEN_MOUSEMETA|GLISTEN_MOUSEDOWNMOVES);

#if GINPUT_NEED_KEYBOARD
#if GINPUT_NEED_KEYBOARD || GWIN_NEED_KEYBOARD
geventAttachSource(&gl, ginputGetKeyboard(GKEYBOARD_ALL_INSTANCES), GLISTEN_KEYUP);
#endif
}
Expand Down

0 comments on commit 697211a

Please sign in to comment.