diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b792ebb..1e24f24 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,12 +133,6 @@ jobs: run: flutter build macos --release --obfuscate --split-debug-info=symbols --dart-define=VERIFYING_SHARED_SECRET=${{ secrets.VERIFYING_SHARED_SECRET }} --dart-define=REVENUECAT_API_KEY_IOS=${{ secrets.REVENUECAT_API_KEY_IOS }} - - name: Set Up Flutter Rest - uses: subosito/flutter-action@v2 - with: - channel: 'stable' - flutter-version: ${{ env.FLUTTER_VERSION }} - - name: Decode Keystore if: inputs.build_android run: | diff --git a/lib/bluetooth/devices/base_device.dart b/lib/bluetooth/devices/base_device.dart index df2a132..01b3bba 100644 --- a/lib/bluetooth/devices/base_device.dart +++ b/lib/bluetooth/devices/base_device.dart @@ -80,10 +80,10 @@ abstract class BaseDevice { } else { // For non-long-press actions: perform a single click // First call performs the click action (isKeyDown: true, isKeyUp: true) - await handleButtonsClicked(clickedButtons, longPress: false); + await handleButtonsClicked(clickedButtons); // Second call cleans up state (clears timer, logs release, clears _previouslyPressedButtons) // but doesn't perform a release action since longPress: false - await handleButtonsClicked([], longPress: false); + await handleButtonsClicked([]); } } else { await handleButtonsClicked(clickedButtons);