Skip to content

After clicking the UseCameraLimitators_radioButton, we make the first listview item the default selected item to avoid SelectedLimitator = -1 #512

After clicking the UseCameraLimitators_radioButton, we make the first listview item the default selected item to avoid SelectedLimitator = -1

After clicking the UseCameraLimitators_radioButton, we make the first listview item the default selected item to avoid SelectedLimitator = -1 #512

Workflow file for this run

name: Build Wario Land 4 Editor
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
name: WL4Editor
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]
steps:
- name: Download Submodules
uses: actions/checkout@v4
with:
submodules: true
- name: Install Python 3.X version
uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: 'x64'
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.4.2
- name: Setup MSVC environment
if: startsWith(matrix.os, 'windows')
uses: ilammy/msvc-dev-cmd@v1
- name: Build WL4Editor on Windows
if: startsWith(matrix.os, 'windows')
run: |
dir %Qt6_Dir%/lib/cmake
qmake WL4Editor.pro
nmake debug
shell: cmd
- name: Build WL4Editor on *nix
if: (!startsWith(matrix.os, 'windows'))
run: |
ls "$Qt6_DIR/lib/cmake"
qmake WL4Editor.pro
make
shell: bash