disable brush pressure averaging, implement single finger for camera rotation when touch draw is disabled

This commit is contained in:
2018-10-13 17:03:15 +02:00
parent da5041b187
commit 64ce471ed8
7 changed files with 36 additions and 12 deletions

View File

@@ -303,3 +303,10 @@ void App::toggle_ui()
m->m_children[i]->m_display = fullscreen;
fullscreen = !fullscreen;
}
void App::set_stylus()
{
has_stylus = true;
if (canvas)
canvas->m_canvas->m_touch_lock = true;
}