mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-07 08:20:01 +01:00
UI fix
This commit is contained in:
@@ -413,7 +413,7 @@ void VideoStreamer::terminate()
|
|||||||
}
|
}
|
||||||
|
|
||||||
Log::Notify("Streaming to %s finished after %s s.", config_.client_name.c_str(),
|
Log::Notify("Streaming to %s finished after %s s.", config_.client_name.c_str(),
|
||||||
GstToolkit::time_to_string(timestamp_).c_str());
|
GstToolkit::time_to_string(duration_).c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
void VideoStreamer::stop ()
|
void VideoStreamer::stop ()
|
||||||
|
|||||||
@@ -345,10 +345,14 @@ void UserInterface::handleKeyboard()
|
|||||||
else if (navigator.pannelVisible())
|
else if (navigator.pannelVisible())
|
||||||
navigator.hidePannel();
|
navigator.hidePannel();
|
||||||
// 3. hide windows
|
// 3. hide windows
|
||||||
else if (Settings::application.widget.preview || Settings::application.widget.media_player || Settings::application.widget.history) {
|
else if (Settings::application.widget.preview ||
|
||||||
|
Settings::application.widget.media_player ||
|
||||||
|
Settings::application.widget.history ||
|
||||||
|
Settings::application.widget.logs) {
|
||||||
Settings::application.widget.preview = false;
|
Settings::application.widget.preview = false;
|
||||||
Settings::application.widget.media_player = false;
|
Settings::application.widget.media_player = false;
|
||||||
Settings::application.widget.history = false;
|
Settings::application.widget.history = false;
|
||||||
|
Settings::application.widget.logs = false;
|
||||||
}
|
}
|
||||||
// 4. cancel selection
|
// 4. cancel selection
|
||||||
else if (!Mixer::selection().empty()) {
|
else if (!Mixer::selection().empty()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user