-
-
Notifications
You must be signed in to change notification settings - Fork 154
Fix GPS rescue layout X7 #269
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
Conversation
After y limits was moved to radio level they are now in effect for all pages. Trying to write outside the min limit causes the text to not show up. Just moved everything to stay within the limits.
@klutvott123 it works without this change on both the X7 sim and my X7 running OpenTx 2.3.1 - do you have a picture of the issue as I may be mistaken. (The y-limits should just cause screen scrolling rather than no text...) |
@frozenskys That's strange. I have also tested on my QX7 and in sim with 2.3.1. Here's what it should look like Which one of these do you see? |
See I had made a mistake! I thought it was the bottom screen limit that was the issue - looks like your fix is good :) Sorry to doubt you, I'll check the other screens to make sure I haven't missed anything... |
@klutvott123 Good spot! :) - There's several other screens that suffer from this issue - did you want to take a look at them or I'm happy to do an additional PR with the other screens in... It's also highlighted an issue with the menu mode from the tools page where the selected field wasn't being reset that I hadn't spotted... |
@frozenskys Happens all the time 😄 Feel free to make a PR with more fixes if you want! I just had a quick look at the X9 pages. At least PID 2/2, rates and GPS rescue needs some work. I would suggest changing the y limits for 212x64 to be the same as for 128x64. 11 to 52. That should take care of PID 2/2 and rates. edit: VTX for X9 😄 |
Thanks :) - Found PIDS2 / RATES / VTX on 128x64 needed some small fixes in addition to the GPS Rescue you found, also RX could do with being shuffled up the screen a little. I'm assuming the same numbers will work for 212x64 as the screen height is the same. |
I have fixed resuce page in PR #256 |
@kaweksl Ahh I see! Then I might close this. I usually start at y = 12 and x = 2 with a linespacing of 8 pixels because it makes good use of the limited screen space while still leaving some empty space around. Can fit 6 lines nicely without touching the titlebar or having letters cut at the bottom of the screen. |
Starting from y = 12 is better than 14 because Ground Speed at bottom is visible without scrolling, +1 for visible lines. I will change that in #256 |
Fixed in #256. Closing |
After y limits was moved to radio level they are now in effect for all pages. Trying to write outside the min limit causes the text to not show up. Just moved everything to stay within the limits.