Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into hdzero-osd
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdCopter committed Dec 19, 2023
2 parents 074f4b0 + 245dad4 commit c973d37
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Upload Artifacts
if: ${{ startsWith(matrix.os, 'ubuntu') }}
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: EmuConfigurator-${{ github.ACTOR }}-${{ github.RUN_NUMBER }}-Linux
path: |
Expand All @@ -120,13 +120,13 @@ jobs:
release/*.zip
- name: Upload Artifacts
if: ${{ startsWith(matrix.os, 'macos') }}
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: EmuConfigurator-${{ github.ACTOR }}-${{ github.RUN_NUMBER }}-OSX
path: release/*.dmg
- name: Upload Artifacts
if: ${{ startsWith(matrix.os, 'windows') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: EmuConfigurator-${{ github.ACTOR }}-${{ github.RUN_NUMBER }}-Windows
path: |
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
continue-on-error: true

- name: download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: ./Artifacts
continue-on-error: false
Expand Down
8 changes: 8 additions & 0 deletions src/js/tabs/osd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2588,6 +2588,14 @@ TABS.osd.initialize = function (callback) {
}
}

if ( numberOfProfiles === 1) {
osdProfileSelector_e.hide();
$('.osdprofile-selected-container').hide();
} else {
osdProfileSelector_e.show();
$('.osdprofile-selected-container').show();
}

// Select the current OSD profile
osdProfileActive_e.val(OSD.data.osd_profiles.selected);

Expand Down

0 comments on commit c973d37

Please sign in to comment.