mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-13 10:20:01 +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();
|
QString st = controls_showvideo->text();
|
||||||
|
|
||||||
if(st == "Hide Display Video") {
|
if(st == "Hide Display Video") {
|
||||||
playback->setDisplayed(false);
|
playback->setDisplayed(Qt::Unchecked);
|
||||||
disp->hide();
|
disp->hide();
|
||||||
controls_showvideo->setText("Show Display Video");
|
controls_showvideo->setText("Show Display Video");
|
||||||
} else {
|
} else {
|
||||||
@@ -694,12 +694,12 @@ void AC_MainWindow::controls_Pause() {
|
|||||||
QString p = controls_pause->text();
|
QString p = controls_pause->text();
|
||||||
if(p == "Pause") {
|
if(p == "Pause") {
|
||||||
controls_pause->setText("Paused");
|
controls_pause->setText("Paused");
|
||||||
controls_pause->setChecked(Qt::Checked);
|
controls_pause->setChecked(true);
|
||||||
paused = true;
|
paused = true;
|
||||||
playback->Stop();
|
playback->Stop();
|
||||||
} else {
|
} else {
|
||||||
controls_pause->setText("Pause");
|
controls_pause->setText("Pause");
|
||||||
controls_pause->setChecked(Qt::Unchecked);
|
controls_pause->setChecked(false);
|
||||||
playback->Play();
|
playback->Play();
|
||||||
paused = false;
|
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