Skip to content

manager: fix ksu.fullScreen#3126

Merged
aviraxp merged 1 commit into
tiann:mainfrom
KOWX712:fullScreen
Jan 1, 2026
Merged

manager: fix ksu.fullScreen#3126
aviraxp merged 1 commit into
tiann:mainfrom
KOWX712:fullScreen

Conversation

@KOWX712

@KOWX712 KOWX712 commented Jan 1, 2026

Copy link
Copy Markdown
Collaborator

since insets is toggeable in #3083, fullScreen will only toggle system bar but not insets. This commit restore how fullScreen function like previous version, both system bar and insets are toggled simultaniously.

since insets is toggeable in tiann#3083, fullScreen will only toggle system bar but not insets. This commit restore how fullScreen function like previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
KOWX712 added a commit to KOWX712/APatch that referenced this pull request Jan 1, 2026
@aviraxp aviraxp merged commit 74c6edd into tiann:main Jan 1, 2026
16 checks passed
@KOWX712 KOWX712 deleted the fullScreen branch January 2, 2026 06:31
rsuntk pushed a commit to rsuntk/KernelSU that referenced this pull request Jan 3, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
Signed-off-by: rsuntk <rissu.ntk@gmail.com>
KOWX712 added a commit to KOWX712/KernelSU that referenced this pull request Jan 3, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 5, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 5, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
Prslc pushed a commit to Prslc/APatch that referenced this pull request Jan 6, 2026
sync tiann/KernelSU#2952, tiann/KernelSU#3083

add insets support to WebUI, no change are required for existing WebUI module.

minor touch up

manager: fix ksu.fullScreen

ref: tiann/KernelSU#3126

Co-Authored-By: Der_Googler <54764558+dergoogler@users.noreply.github.com>
Co-Authored-By: Light_summer <93428659+lightsummer233@users.noreply.github.com>
Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 8, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
Prslc pushed a commit to Prslc/APatch that referenced this pull request Jan 11, 2026
sync tiann/KernelSU#2952, tiann/KernelSU#3083

add insets support to WebUI, no change are required for existing WebUI module.

minor touch up

manager: fix ksu.fullScreen

ref: tiann/KernelSU#3126

Co-Authored-By: Der_Googler <54764558+dergoogler@users.noreply.github.com>
Co-Authored-By: Light_summer <93428659+lightsummer233@users.noreply.github.com>
Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 13, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 13, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 13, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 14, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
u9521 pushed a commit to u9521/KernelSU that referenced this pull request Jan 20, 2026
since insets is toggeable in tiann#3083, fullScreen will only toggle system
bar but not insets. This commit restore how fullScreen function like
previous version, both system bar and insets are toggled simultaniously.

Signed-off-by: KOWX712 <leecc0503@gmail.com>
KOWX712 added a commit to KOWX712/FolkPatch that referenced this pull request May 29, 2026
The WebUI failed to load CSS/JS assets because the WebView was configured and loadUrl was called inside the AndroidView factory during Compose composition, which blocked the main thread and called loadUrl before the WebView had valid dimensions.
Refactor to match the KernelSU pattern:
- Create WebView and configure WebViewAssetLoader on IO dispatcher
- Build WebView fully on Main thread outside AndroidView
- Defer loadUrl until width > 0 && height > 0 via layout listener

- related:
  - tiann/KernelSU#2952
  - tiann/KernelSU#3083
  - tiann/KernelSU#3126
  - tiann/KernelSU#3190

Signed-off-by: KOWX712 <leecc0503@gmail.com>
matsuzaka-yuki pushed a commit to LyraVoid/FolkPatch that referenced this pull request May 30, 2026
#151)

The WebUI failed to load CSS/JS assets because the WebView was configured and loadUrl was called inside the AndroidView factory during Compose composition, which blocked the main thread and called loadUrl before the WebView had valid dimensions.
Refactor to match the KernelSU pattern:
- Create WebView and configure WebViewAssetLoader on IO dispatcher
- Build WebView fully on Main thread outside AndroidView
- Defer loadUrl until width > 0 && height > 0 via layout listener

- related:
  - tiann/KernelSU#2952
  - tiann/KernelSU#3083
  - tiann/KernelSU#3126
  - tiann/KernelSU#3190

Signed-off-by: KOWX712 <leecc0503@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants