Skip to content
Snippets Groups Projects
Commit 004fddf4 authored by Erwin Ried's avatar Erwin Ried
Browse files

Skip splash when pressing titlebar, if enabled

parent c7082455
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,10 @@ void SystemStatusView::on_camera() {
}
void SystemStatusView::on_title() {
nav_.push<AboutView>();
if(nav_.is_top())
nav_.push<AboutView>();
else
nav_.pop();
}
/* Information View *****************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment