This commit is contained in:
Jonas Zeunert
2020-04-09 21:44:32 +02:00
15 changed files with 226 additions and 34 deletions

View File

@@ -230,6 +230,12 @@ boost::optional<Poco::JSON::Object> OutputRequestHandler::parseDisplay(const std
return response;
}
if (display_name == "test")
{
this->output_driver->rotate_displays();
return response;
}
auto opt_display = this->output_driver->get_display(display_name);
if(!opt_display)