-
-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(lua): send EVT_VIRTUAL_EXIT only on short EXIT press #2573
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I tested this on my external module with ELRS and it works as expected again. Thanks. |
Betaflight, ExpressLRS and TBS Agent all behaving as expected. |
pfeerick
added
color
Related generally to color LCD radios
bug/regression ↩️
A new version of EdgeTX broke something
labels
Oct 17, 2022
pfeerick
pushed a commit
that referenced
this pull request
Oct 18, 2022
raphaelcoeffic
added a commit
that referenced
this pull request
Oct 31, 2022
This issue has been introduced in #2573.
pfeerick
pushed a commit
that referenced
this pull request
Oct 31, 2022
This issue has been introduced in #2573.
1 task
pfeerick
pushed a commit
that referenced
this pull request
Nov 2, 2022
This issue has been introduced in #2573.
shane-droid
added a commit
to shane-droid/edgetx
that referenced
this pull request
Aug 12, 2023
…icSwitch2-testmergeMain-18oct22 * 'main' of https://github.com/EdgeTX/edgetx: (101 commits) feat(color): mix/output bars show '0%' (EdgeTX#2592) fix(lua): send EVT_VIRTUAL_EXIT only on short EXIT press (EdgeTX#2573) fix(color): Write pending changes to model before duplicate (EdgeTX#2579) fix(color): min/max highlighting should depend on mixer channel value (EdgeTX#2582) fix(gf): reset global function context if disabled (EdgeTX#2578) fix(color): clear spectrum analyser data buffer on init fix(color): check `theme` before accessing it fix(cpn): Workaround MacOS 13 filesystem type change (EdgeTX#2564) chore(adc): store constant structs in FLASH (EdgeTX#2551) fix(color): copy/paste inputs/mixers (EdgeTX#2545) fix(color): RF power drop-down (EdgeTX#2547) fix(color): module setup sub-type after selecting MPM (EdgeTX#2548) fix(B&W): `a~x` not being displayed correctly (EdgeTX#2539) fix(X10): Simulated page up in menu toolbar (EdgeTX#2543) fix: hard coded special characters (EdgeTX#2538) feat(color): single press to trigger model select menu (EdgeTX#2533) fix(color): shortcut for model select (EdgeTX#2528) fix(color): screen / widget setup (EdgeTX#2532) fix(NV14/EL18): Reduce LCD pixel clock to 1000000 (EdgeTX#2525) fix: clear internal module FIFO after DMA init (EdgeTX#2527) ... # Conflicts: # radio/src/fonts/lvgl/lv_font_noto_cn_24.c # radio/src/fonts/lvgl/lv_font_noto_tw_24.c # radio/src/gui/colorlcd/model_mixes.cpp # radio/src/gui/colorlcd/output_edit.cpp # radio/src/gui/colorlcd/screen_setup.cpp # radio/src/gui/colorlcd/view_about.cpp # radio/src/storage/modelslist.cpp # radio/src/translations/cn.h # radio/src/translations/de.h # radio/src/translations/en.h # radio/src/translations/se.h # radio/src/translations/tw.h
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug/regression ↩️
A new version of EdgeTX broke something
color
Related generally to color LCD radios
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #2436
Summary of changes:
EVT_KEY_BREAK(KEY_EXIT)
is now mapped toLV_EVENT_CANCEL
(previouslyEVT_KEY_FIRST(KEY_EXIT)
)short
andlong
EXIT
/RTN
work the same everywhere (BREAK
event is generated, thusonCancel()
is called)long EXIT
does not generate aBREAK
event.