Initial implementation of cursor smoothing

This commit is contained in:
brunoherbelin
2020-09-13 22:02:49 +02:00
parent fa7257fe92
commit 5895e203ba
4 changed files with 24 additions and 6 deletions

View File

@@ -147,6 +147,7 @@ struct Application
int accent_color;
bool pannel_stick;
bool smooth_transition;
bool smooth_cursor;
// Settings of widgets
WidgetsConfig widget;
@@ -177,6 +178,7 @@ struct Application
accent_color = 0;
pannel_stick = false;
smooth_transition = true;
smooth_cursor = false;
current_view = 1;
windows = std::vector<WindowConfig>(3);
windows[0].name = APP_NAME APP_TITLE;