Skip to content

Commit 3e179ee

Browse files
Linux bug fixes.
1 parent 1508fde commit 3e179ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sample_template/application.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ void onButtonsOnOffClick(int eventId, int x, int y, int flags, void *userData)
101101
(Application::GUIElementsState *)userData;
102102
if (onButtonClicked(elems->onButtonPlace, x, y))
103103
{
104-
elems->state = Application::WindowState::OnFilter;
104+
elems->state = Application::OnFilter;
105105
return;
106106
}
107107
if (offButtonClicked(elems->offButtonPlace, x, y))
108108
{
109-
elems->state = Application::WindowState::OffFilter;
109+
elems->state = Application::OffFilter;
110110
return;
111111
}
112112
}

0 commit comments

Comments
 (0)