mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-11 17:30:02 +01:00
updated ...
This commit is contained in:
0
src/display_window.cpp
Normal file → Executable file
0
src/display_window.cpp
Normal file → Executable file
0
src/display_window.h
Normal file → Executable file
0
src/display_window.h
Normal file → Executable file
0
src/main.cpp
Normal file → Executable file
0
src/main.cpp
Normal file → Executable file
6
src/main_window.cpp
Normal file → Executable file
6
src/main_window.cpp
Normal file → Executable 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
0
src/main_window.h
Normal file → Executable file
0
src/new_dialog.cpp
Normal file → Executable file
0
src/new_dialog.cpp
Normal file → Executable file
0
src/new_dialog.h
Normal file → Executable file
0
src/new_dialog.h
Normal file → Executable file
0
src/playback_thread.cpp
Normal file → Executable file
0
src/playback_thread.cpp
Normal file → Executable file
0
src/playback_thread.h
Normal file → Executable file
0
src/playback_thread.h
Normal file → Executable file
0
src/plugin.cpp
Normal file → Executable file
0
src/plugin.cpp
Normal file → Executable file
0
src/plugin.h
Normal file → Executable file
0
src/plugin.h
Normal file → Executable file
0
src/qtheaders.h
Normal file → Executable file
0
src/qtheaders.h
Normal file → Executable file
0
src/select_image.cpp
Normal file → Executable file
0
src/select_image.cpp
Normal file → Executable file
0
src/select_image.h
Normal file → Executable file
0
src/select_image.h
Normal file → Executable file
Reference in New Issue
Block a user