Browse Source

(Fixed typo)

tags/2021-05-28
jules 8 years ago
parent
commit
46a9da28d6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp

+ 2
- 2
modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp View File

@@ -2214,7 +2214,7 @@ public:
{
updateKeyModifiers ((int) buttonPressEvent.state);
auto mapIndex = (uint32) (buttonPressEvent.button - Button1)
auto mapIndex = (uint32) (buttonPressEvent.button - Button1);
if (mapIndex < numElementsInArray (pointerMap))
{
@@ -2239,7 +2239,7 @@ public:
if (parentWindow != 0)
updateWindowBounds();
auto mapIndex = (uint32) (buttonRelEvent.button - Button1)
auto mapIndex = (uint32) (buttonRelEvent.button - Button1);
if (mapIndex < numElementsInArray (pointerMap))
{


Loading…
Cancel
Save