Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
flow3r firmware
Merge requests
!212
gr33nhouse: Don't render invisible entries in the applist
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
gr33nhouse: Don't render invisible entries in the applist
dos/flow3r-firmware:gr33nhouse-fps
into
main
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
dos
requested to merge
dos/flow3r-firmware:gr33nhouse-fps
into
main
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Improves rendering performance with current app list size from 3-4 FPS to 8-10 FPS.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
0dde01e1
1 commit,
1 year ago
1 file
+
3
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
python_payload/apps/gr33nhouse/applist.py
+
3
−
2
Options
@@ -106,8 +106,9 @@ class AppList(BaseView):
else
:
ctx
.
gray
(
1.0
)
ctx
.
move_to
(
0
,
offset
)
ctx
.
text
(
app
[
"
name
"
])
if
abs
(
self
.
_sc
.
current_position
()
-
idx
)
<=
5
:
ctx
.
move_to
(
0
,
offset
)
ctx
.
text
(
app
[
"
name
"
])
offset
+=
30
ctx
.
restore
()
Loading