mirror of
https://github.com/86Box/86Box.git
synced 2026-02-25 21:43:16 -07:00
Merge branch 'master' of https://github.com/86Box/86Box
This commit is contained in:
3
.ci/Jenkinsfile
vendored
3
.ci/Jenkinsfile
vendored
@@ -78,8 +78,7 @@ def dynarecSlugs = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
def presets = [
|
def presets = [
|
||||||
'Regular',
|
'Regular'
|
||||||
'Debug'
|
|
||||||
]
|
]
|
||||||
|
|
||||||
def presetSlugs = [
|
def presetSlugs = [
|
||||||
|
|||||||
@@ -1139,6 +1139,7 @@ EOF
|
|||||||
--recipe AppImageBuilder-generated.yml --appdir "$(grep -oP '^\s+path: \K(.+)' AppImageBuilder-generated.yml)"
|
--recipe AppImageBuilder-generated.yml --appdir "$(grep -oP '^\s+path: \K(.+)' AppImageBuilder-generated.yml)"
|
||||||
status=$?
|
status=$?
|
||||||
[ $status -eq 0 ] && break
|
[ $status -eq 0 ] && break
|
||||||
|
[ $status -eq 127 ] && rm -rf /tmp/appimage_extracted_*
|
||||||
done
|
done
|
||||||
|
|
||||||
# Remove appimage-builder binary on failure, just in case it's corrupted.
|
# Remove appimage-builder binary on failure, just in case it's corrupted.
|
||||||
|
|||||||
@@ -572,7 +572,8 @@ MediaMenu::cdromUpdateMenu(int i)
|
|||||||
auto childs = menu->children();
|
auto childs = menu->children();
|
||||||
|
|
||||||
auto *muteMenu = dynamic_cast<QAction *>(childs[cdromMutePos]);
|
auto *muteMenu = dynamic_cast<QAction *>(childs[cdromMutePos]);
|
||||||
muteMenu->setChecked(cdrom[i].sound_on == 0);
|
muteMenu->setIcon(QApplication::style()->standardIcon((cdrom[i].sound_on == 0) ? QStyle::SP_MediaVolume : QStyle::SP_MediaVolumeMuted));
|
||||||
|
muteMenu->setText((cdrom[i].sound_on == 0) ? tr("&Unmute") : tr("&Mute"));
|
||||||
|
|
||||||
auto *imageMenu = dynamic_cast<QAction *>(childs[cdromImagePos]);
|
auto *imageMenu = dynamic_cast<QAction *>(childs[cdromImagePos]);
|
||||||
imageMenu->setEnabled(!name.isEmpty());
|
imageMenu->setEnabled(!name.isEmpty());
|
||||||
|
|||||||
Reference in New Issue
Block a user