updated ...

This commit is contained in:
lostjared
2018-06-03 14:52:49 -07:00
parent d695e58ce6
commit 4c673656dd
14 changed files with 3 additions and 3 deletions

0
src/display_window.cpp Normal file → Executable file
View File

0
src/display_window.h Normal file → Executable file
View File

0
src/main.cpp Normal file → Executable file
View File

6
src/main_window.cpp Normal file → Executable file
View File

@@ -664,7 +664,7 @@ void AC_MainWindow::controls_ShowVideo() {
QString st = controls_showvideo->text();
if(st == "Hide Display Video") {
playback->setDisplayed(false);
playback->setDisplayed(Qt::Unchecked);
disp->hide();
controls_showvideo->setText("Show Display Video");
} else {
@@ -694,12 +694,12 @@ void AC_MainWindow::controls_Pause() {
QString p = controls_pause->text();
if(p == "Pause") {
controls_pause->setText("Paused");
controls_pause->setChecked(Qt::Checked);
controls_pause->setChecked(true);
paused = true;
playback->Stop();
} else {
controls_pause->setText("Pause");
controls_pause->setChecked(Qt::Unchecked);
controls_pause->setChecked(false);
playback->Play();
paused = false;
}

0
src/main_window.h Normal file → Executable file
View File

0
src/new_dialog.cpp Normal file → Executable file
View File

0
src/new_dialog.h Normal file → Executable file
View File

0
src/playback_thread.cpp Normal file → Executable file
View File

0
src/playback_thread.h Normal file → Executable file
View File

0
src/plugin.cpp Normal file → Executable file
View File

0
src/plugin.h Normal file → Executable file
View File

0
src/qtheaders.h Normal file → Executable file
View File

0
src/select_image.cpp Normal file → Executable file
View File

0
src/select_image.h Normal file → Executable file
View File