Unable to open the manga in website #37

Closed
opened 2025-03-15 11:39:55 -04:00 by S1-19027 · 11 comments
S1-19027 commented 2025-03-15 11:39:55 -04:00 (Migrated from github.com)

Image

Image
I follow the instruction to add ID.However,when I try to click it ,it doesn't open my website ,the relevant page.(https://mangadex.org/title/6348a562-067b-45cb-ab2b-c6f33f0e7ead/blue-archive
Image
I think the soultion is here....however,I can't manage it .

![Image](https://github.com/user-attachments/assets/95430b82-f738-4514-b731-204cfc60705f) ![Image](https://github.com/user-attachments/assets/be07c40c-caa0-4ad0-be74-b807a7e3b1b9) I follow the instruction to add ID.However,when I try to click it ,it doesn't open my website ,the relevant page.(https://[mangadex.org/title/6348a562-067b-45cb-ab2b-c6f33f0e7ead/blue-archive](https://mangadex.org/title/6348a562-067b-45cb-ab2b-c6f33f0e7ead/blue-archive) ![Image](https://github.com/user-attachments/assets/3e34f864-d98d-4f8c-80b9-9cf64ab3a1e3) I think the soultion is here....however,I can't manage it .
Xenon257R commented 2025-03-15 17:27:48 -04:00 (Migrated from github.com)

To open the link, you must double-click the cover page. A single click will not suffice.

If you would like to change this behavior, in the file you opened mangafolder.ini, find the LeftMouseDoubleClickAction line (it should be on Line 641, under the header [LinkHitbox]) and change it to LeftMouseUpAction. So after changes, the line should look like below:

LeftMouseUpAction=[&MangaScript:GetLatestChapterLink(0)]
To open the link, you must double-click the cover page. A single click will not suffice. If you would like to change this behavior, in the file you opened `mangafolder.ini`, find the `LeftMouseDoubleClickAction` line (it should be on Line 641, under the header `[LinkHitbox]`) and change it to `LeftMouseUpAction`. So after changes, the line should look like below: ``` LeftMouseUpAction=[&MangaScript:GetLatestChapterLink(0)] ```
S1-19027 commented 2025-03-15 22:17:45 -04:00 (Migrated from github.com)

To open the link, you must double-click the cover page. A single click will not suffice.要打开链接,您必须双击封面。单击一次是不够的。

If you would like to change this behavior, in the file you opened mangafolder.ini, find the LeftMouseDoubleClickAction line (it should be on Line 641, under the header [LinkHitbox]) and change it to LeftMouseUpAction. So after changes, the line should look like below:如果你想改变这种行为,在你打开的mangafolder.ini文件中,找到LeftMouseDoubleClickAction行(它应该在第 641 行,标题[LinkHitbox]下)并将其更改为LeftMouseUpAction 。更改后,该行应如下所示:

LeftMouseUpAction=[&MangaScript:GetLatestChapterLink(0)]

Nothing happened after I tried to double click under "LeftMouseDoubleClickAction" module or single clkic under "LeftMouseUpAction" module.I suppose it's not the change in mangafolder.ini.

> To open the link, you must double-click the cover page. A single click will not suffice.要打开链接,您必须双击封面。单击一次是不够的。 > > If you would like to change this behavior, in the file you opened `mangafolder.ini`, find the `LeftMouseDoubleClickAction` line (it should be on Line 641, under the header `[LinkHitbox]`) and change it to `LeftMouseUpAction`. So after changes, the line should look like below:如果你想改变这种行为,在你打开的`mangafolder.ini`文件中,找到`LeftMouseDoubleClickAction`行(它应该在第 641 行,标题`[LinkHitbox]`下)并将其更改为`LeftMouseUpAction` 。更改后,该行应如下所示: > > ``` > LeftMouseUpAction=[&MangaScript:GetLatestChapterLink(0)] > ``` __Nothing happened after I tried to double click under "LeftMouseDoubleClickAction" module or single clkic under "LeftMouseUpAction" module.I suppose it's not the change in mangafolder.ini.__
Xenon257R commented 2025-03-15 23:34:34 -04:00 (Migrated from github.com)

That is very strange. Please open the @Resources\user\config.inc file and locate the code below at Lines 26-32:

; --------
; Hitboxes
; --------
; Debug=Fill Color 0,122,0,122 | StrokeWidth 1 | Stroke Color 0,122,0,255
; Hitbox=Fill Color 122,0,0,122 | StrokeWidth 1 | Stroke Color 122,0,0,255
Debug=Fill Color 0,122,0,0 | StrokeWidth 0
Hitbox=Fill Color 0,0,0,1 | StrokeWidth 0

And change it to the following (we are switching to debug mode):

; --------
; Hitboxes
; --------
Debug=Fill Color 0,122,0,122 | StrokeWidth 1 | Stroke Color 0,122,0,255
Hitbox=Fill Color 122,0,0,122 | StrokeWidth 1 | Stroke Color 122,0,0,255
; Debug=Fill Color 0,122,0,0 | StrokeWidth 0
; Hitbox=Fill Color 0,0,0,1 | StrokeWidth 0

...and refresh the mangafolder.ini skin (or you can refresh the entire suite, either works). It will render hitboxes where mouse interactions can occur with each skin. If everything is working fine, it should look something like below after you pull up the manga:

Image

The key legend is as follows:
A: Mark manga as caught-up
B: Mouse scroll area to navigate between manga entries
C: Double-click to go to manga
D: Open/Close manga list
E: Open File Explorer/Optional Right-Click function

So you should have 5 red boxes (some overlapping) in total. If any of the red boxes are missing, namely [C], then we can conclude that it is an interaction layer generation issue - possibly something wrong with [EaseAction] and the script methods it is using - and the .ini or '.lua` file might be corrupted somehow.

Let me know if anything looks out of place. I will think of other possibilities in the mean time.

That is very strange. Please open the `@Resources\user\config.inc` file and locate the code below at Lines 26-32: ```ini ; -------- ; Hitboxes ; -------- ; Debug=Fill Color 0,122,0,122 | StrokeWidth 1 | Stroke Color 0,122,0,255 ; Hitbox=Fill Color 122,0,0,122 | StrokeWidth 1 | Stroke Color 122,0,0,255 Debug=Fill Color 0,122,0,0 | StrokeWidth 0 Hitbox=Fill Color 0,0,0,1 | StrokeWidth 0 ``` And change it to the following (we are switching to debug mode): ```ini ; -------- ; Hitboxes ; -------- Debug=Fill Color 0,122,0,122 | StrokeWidth 1 | Stroke Color 0,122,0,255 Hitbox=Fill Color 122,0,0,122 | StrokeWidth 1 | Stroke Color 122,0,0,255 ; Debug=Fill Color 0,122,0,0 | StrokeWidth 0 ; Hitbox=Fill Color 0,0,0,1 | StrokeWidth 0 ``` ...and refresh the `mangafolder.ini` skin (or you can refresh the entire suite, either works). It will render hitboxes where mouse interactions can occur with each skin. If everything is working fine, it should look something like below after you pull up the manga: ![Image](https://github.com/user-attachments/assets/c7e803cf-5128-4819-989c-84ced68f0e4c) The key legend is as follows: A: Mark manga as caught-up B: Mouse scroll area to navigate between manga entries C: Double-click to go to manga D: Open/Close manga list E: Open File Explorer/Optional Right-Click function So you should have 5 red boxes (some overlapping) in total. If any of the red boxes are missing, namely `[C]`, then we can conclude that it is an interaction layer generation issue - possibly something wrong with `[EaseAction]` and the script methods it is using - and the `.ini` or '.lua` file might be corrupted somehow. Let me know if anything looks out of place. I will think of other possibilities in the mean time.
S1-19027 commented 2025-03-16 05:55:31 -04:00 (Migrated from github.com)

Image
There isn't any missing box......So what can I do next?

![Image](https://github.com/user-attachments/assets/5dbeef5e-bcc1-4e54-b6c2-7e4d76d61690) __There isn't any missing box......So what can I do next?__
Xenon257R commented 2025-03-16 12:33:52 -04:00 (Migrated from github.com)

Image

There ARE missing boxes! Notice that there are supposed to be two boxes INSIDE the big one up top (my image shows darker red areas) - one that is overlapping the square box on the top left and another rectangle that covers the cover image. So it is an unhiding issue - I wonder if your file got corrupted somehow.

The common factor of the missing boxes is that they are the sole children of MangaHitboxGroup. At the very bottom of the mangafolder.ini config file, please compare your file to the code below:

[EaseAction]
Measure=Plugin
Plugin=ActionTimer
ActionList1=Repeat OPN, #Interval#, 10 | Wait #Interval# | IOP
ActionList2=Repeat CLS, #Interval#, 10 | Wait #Interval# | ICL
ActionList3=Repeat FWD, #Interval#, 10 | Wait #Interval# | FSW
ActionList4=Repeat BKD, #Interval#, 10 | Wait #Interval# | BSW
ActionList5=IOP
ActionList6=ICL
ActionList7=FSW
ActionList8=BSW
OPN=[&MangaScript:Scroll(0,1,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw]
CLS=[&MangaScript:Scroll(0,-1,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw]
IOP=[&MangaScript:Scroll(0,10,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup InactiveGroup][!ShowMeterGroup ActiveGroup][!ShowMeterGroup MangaHitboxGroup][!Redraw]
ICL=[&MangaScript:Scroll(0,-10,0)][!UpdateMeterGroup ContainerGroup][!ShowMeterGroup InactiveGroup][!HideMeterGroup ActiveGroup][!HideMeterGroup MangaHitboxGroup][!Redraw]
FWD=[&MangaScript:Scroll(1,-1,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw]
FSW=[&MangaScript:ChangeManga(1)][&MangaScript:Scroll(-10,10,0)][!UpdateMeterGroup ContainerGroup][!UpdateMeterGroup PageGroup][!ShowMeterGroup MangaHitboxGroup][!Redraw]
BKD=[&MangaScript:Scroll(0,-1,1)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw]
BSW=[&MangaScript:ChangeManga(-1)][&MangaScript:Scroll(0,10,-10)][!UpdateMeterGroup ContainerGroup][!UpdateMeterGroup PageGroup][!ShowMeterGroup MangaHitboxGroup][!Redraw]
IgnoreWarnings=1

Notably, [!ShowMeterGroup MangaHitboxGroup] should occur 3 times. I see you have multiple manga entries as well - try going left and right and see if the missing boxes show up then.

Also, check around line 634 and compare it to the code below as well to see if everything looks the same:

[SetReadHitbox]
Meter=Shape
Group=MangaHitboxGroup
Shape=Rectangle 0,0,(35*#GScale#),(35*#GScale#) | #Hitbox#
Container=FileContainer2
X=(15*#GScale#)
Y=(15*#GScale#)
LeftMouseUpAction=[&MangaScript:SetRead()][!UpdateMeter CompleteMark1]#Stamp#[!Redraw]
DynamicVariables=1
Hidden=1

[LinkHitbox]
Meter=Shape
Group=MangaHitboxGroup
Shape=Rectangle 0,0,(110*#GScale#),(Min((#PullHeight#-60),165)*#GScale#) | #Hitbox#
Container=FileContainer2
X=(15*#GScale#)
Y=(55*#GScale#)
LeftMouseDoubleClickAction=[&MangaScript:GetLatestChapterLink(0)]
Hidden=1

As a quick test, you can remove the Container=FileContainer2 and Hidden=1 lines and see if the boxes appear. Try clicking them as well - the smaller box will make a sound and mark the manga as caught-up, and the larger box should open the link.

Image


If the boxes refuse to show and everything in the code looks correct, I would like you to give me your mangafolder.ini file for me to take a look to see if anything got inadvertently changed. If I don't find any breaking changes, I will provide you with a verbose version of the skin that will output logs to further diagnose the issue.

![Image](https://github.com/user-attachments/assets/3335c817-c2a2-4a17-a231-2c0d86769a1b) There ARE missing boxes! Notice that there are supposed to be two boxes INSIDE the big one up top (my image shows darker red areas) - one that is overlapping the square box on the top left and another rectangle that covers the cover image. So it is an unhiding issue - I wonder if your file got corrupted somehow. The common factor of the missing boxes is that they are the sole children of `MangaHitboxGroup`. At the very bottom of the `mangafolder.ini` config file, please compare your file to the code below: ```ini [EaseAction] Measure=Plugin Plugin=ActionTimer ActionList1=Repeat OPN, #Interval#, 10 | Wait #Interval# | IOP ActionList2=Repeat CLS, #Interval#, 10 | Wait #Interval# | ICL ActionList3=Repeat FWD, #Interval#, 10 | Wait #Interval# | FSW ActionList4=Repeat BKD, #Interval#, 10 | Wait #Interval# | BSW ActionList5=IOP ActionList6=ICL ActionList7=FSW ActionList8=BSW OPN=[&MangaScript:Scroll(0,1,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw] CLS=[&MangaScript:Scroll(0,-1,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw] IOP=[&MangaScript:Scroll(0,10,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup InactiveGroup][!ShowMeterGroup ActiveGroup][!ShowMeterGroup MangaHitboxGroup][!Redraw] ICL=[&MangaScript:Scroll(0,-10,0)][!UpdateMeterGroup ContainerGroup][!ShowMeterGroup InactiveGroup][!HideMeterGroup ActiveGroup][!HideMeterGroup MangaHitboxGroup][!Redraw] FWD=[&MangaScript:Scroll(1,-1,0)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw] FSW=[&MangaScript:ChangeManga(1)][&MangaScript:Scroll(-10,10,0)][!UpdateMeterGroup ContainerGroup][!UpdateMeterGroup PageGroup][!ShowMeterGroup MangaHitboxGroup][!Redraw] BKD=[&MangaScript:Scroll(0,-1,1)][!UpdateMeterGroup ContainerGroup][!HideMeterGroup MangaHitboxGroup][!Redraw] BSW=[&MangaScript:ChangeManga(-1)][&MangaScript:Scroll(0,10,-10)][!UpdateMeterGroup ContainerGroup][!UpdateMeterGroup PageGroup][!ShowMeterGroup MangaHitboxGroup][!Redraw] IgnoreWarnings=1 ``` Notably, `[!ShowMeterGroup MangaHitboxGroup]` should occur 3 times. I see you have multiple manga entries as well - try going left and right and see if the missing boxes show up then. Also, check around line 634 and compare it to the code below as well to see if everything looks the same: ```ini [SetReadHitbox] Meter=Shape Group=MangaHitboxGroup Shape=Rectangle 0,0,(35*#GScale#),(35*#GScale#) | #Hitbox# Container=FileContainer2 X=(15*#GScale#) Y=(15*#GScale#) LeftMouseUpAction=[&MangaScript:SetRead()][!UpdateMeter CompleteMark1]#Stamp#[!Redraw] DynamicVariables=1 Hidden=1 [LinkHitbox] Meter=Shape Group=MangaHitboxGroup Shape=Rectangle 0,0,(110*#GScale#),(Min((#PullHeight#-60),165)*#GScale#) | #Hitbox# Container=FileContainer2 X=(15*#GScale#) Y=(55*#GScale#) LeftMouseDoubleClickAction=[&MangaScript:GetLatestChapterLink(0)] Hidden=1 ``` As a quick test, you can remove the `Container=FileContainer2` and `Hidden=1` lines and see if the boxes appear. Try clicking them as well - the smaller box will make a sound and mark the manga as caught-up, and the larger box should open the link. ![Image](https://github.com/user-attachments/assets/c80fd4ef-1155-49b6-9db7-6b0549506bd5) *** If the boxes refuse to show and everything in the code looks correct, I would like you to give me your `mangafolder.ini` file for me to take a look to see if anything got inadvertently changed. If I don't find any breaking changes, I will provide you with a verbose version of the skin that will output logs to further diagnose the issue.
S1-19027 commented 2025-03-17 10:10:25 -04:00 (Migrated from github.com)

As a quick test, you can remove the Container=FileContainer2 and Hidden=1 lines and see if the boxes appear. Try clicking them as well - the smaller box will make a sound and mark the manga as caught-up, and the larger box should open the link.

Image

Yes,it does work!I can click the box and open the link.
Howerver,I only can read the first manga.It seems that I can't change the manga I want by scrolling

Image
See the picture?I can only read the first link:1f63ea84-6bc6-4312-81bf-b28d5592d802

> As a quick test, you can remove the Container=FileContainer2 and Hidden=1 lines and see if the boxes appear. Try clicking them as well - the smaller box will make a sound and mark the manga as caught-up, and the larger box should open the link. ![Image](https://github.com/user-attachments/assets/3c55b8b1-36ce-4fbe-bde1-5bbb60f8ca0f) Yes,it does work!I can click the box and open the link. Howerver,I only can read the first manga.It seems that I can't change the manga I want by scrolling ![Image](https://github.com/user-attachments/assets/fe1835d8-6125-45de-bdf9-879ca6c28868) See the picture?I can only read the first link:1f63ea84-6bc6-4312-81bf-b28d5592d802
Xenon257R commented 2025-03-17 21:24:55 -04:00 (Migrated from github.com)

Alright, that's a step forward to fixing the issue - we're making progress!

I'd like you to follow the guideline below. Leave debug mode on, and do not edit your database with more/less manga entries until you finish the whole procedure. If you'd like to add more entries for testing, do so before you start the process. Your left-click/right-click options will also be changed to their default values - do not modify them until the tests have been completed.

  1. Rename mangafolder.ini in the BlueArchive\SchaleFolder directory to something different, like mangafolder_broken.ini. Set this file aside and do not touch it again - I would like you to package it in a .zip file and send it to me for diagnosing.
  2. I have provided a .zip file of 4 potentially fixed config files for the issue that you can download here: mangafolderconfig.zip
  3. Open the .zip file and move its contents into the BlueArchive\SchaleFolder directory.
  4. Open the Rainmeter client and click Refresh All (located at the bottom left, beside Edit Settings).
  5. Switch to the mangafolder1.ini variant and try using it. Note down whether it solved the issue or not. If it didn't, note if there was a different behavior (or lack thereof).
  6. Repeat Step 5 for the remaining 3 variants.

Let me know which of the variants solved the issue. If none, give me some time to run tests with your mangafolder_broken.ini file once you send it. I want to try and reproduce your issue on my computer so I can develop a surefire solution. Worst-case scenario, it's an issue local to your machine - and outside of reinstalling a fresh version of the suite in hopes of fixing it, there might not be a proper solution.

Good luck - let's hope we've finally got this.

Alright, that's a step forward to fixing the issue - we're making progress! I'd like you to follow the guideline below. Leave debug mode on, and do not edit your database with more/less manga entries until you finish the whole procedure. If you'd like to add more entries for testing, do so before you start the process. Your left-click/right-click options will also be changed to their default values - do not modify them until the tests have been completed. 1) Rename `mangafolder.ini` in the `BlueArchive\SchaleFolder` directory to something different, like `mangafolder_broken.ini`. Set this file aside and do not touch it again - I would like you to package it in a `.zip` file and send it to me for diagnosing. 2) I have provided a `.zip` file of 4 potentially fixed config files for the issue that you can download here: [mangafolderconfig.zip](https://github.com/user-attachments/files/19303285/mangafolderconfig.zip) 3) Open the `.zip` file and move its contents into the `BlueArchive\SchaleFolder` directory. 4) Open the *Rainmeter* client and click `Refresh All` (located at the bottom left, beside `Edit Settings`). 5) Switch to the `mangafolder1.ini` variant and try using it. Note down whether it solved the issue or not. If it didn't, note if there was a different behavior (or lack thereof). 6) Repeat **Step 5** for the remaining 3 variants. Let me know which of the variants solved the issue. If none, give me some time to run tests with your `mangafolder_broken.ini` file once you send it. I want to try and reproduce your issue on my computer so I can develop a surefire solution. Worst-case scenario, it's an issue local to your machine - and outside of reinstalling a fresh version of the suite in hopes of fixing it, there might not be a proper solution. Good luck - let's hope we've finally got this.
S1-19027 commented 2025-03-18 04:59:15 -04:00 (Migrated from github.com)

Thanks a lot!Finally I try the third version(mangafolder3.ini)

Image
Here is my broken file.I hope you can find the difference!

mangafolder_broken_version.zip

Thanks a lot!Finally I try the third version(mangafolder3.ini) ![Image](https://github.com/user-attachments/assets/91934625-c1de-4232-beb7-3e24cd30136a) Here is my broken file.I hope you can find the difference! [mangafolder_broken_version.zip](https://github.com/user-attachments/files/19314645/mangafolder_broken_version.zip)
Xenon257R commented 2025-03-18 09:17:44 -04:00 (Migrated from github.com)

That's great news! I took a look at your broken version, and I'm sad to say that I couldn't find any egregious differences. So either the problem was in some other file like manga.lua which is highly unlikely, or it is a local problem which makes me very frustrated because I don't know what could be different on your computer that makes the skin misbehave on just this one thing.

Before I close this thread, can you confirm for me that mangafolder3.ini was the ONLY solution that worked? Did you try mangafolder4.ini? I'd like to have a list of all of the solutions that worked between 1 through 4 so that I can compare my solutions to properly implement the working/fixed parts into a future patch.

If you want, you can rename the working solution to the default name mangafolder.ini. If you don't want to, remember to add the variant name to the ToggleSwitch database so that the suite remembers your selected variant.

That's great news! I took a look at your broken version, and I'm sad to say that I couldn't find any egregious differences. So either the problem was in some other file like `manga.lua` which is highly unlikely, or it is a local problem which makes me very frustrated because I don't know what could be different on your computer that makes the skin misbehave on just this one thing. Before I close this thread, can you confirm for me that `mangafolder3.ini` was the **ONLY** solution that worked? Did you try `mangafolder4.ini`? I'd like to have a list of all of the solutions that worked between 1 through 4 so that I can compare my solutions to properly implement the working/fixed parts into a future patch. If you want, you can rename the working solution to the default name `mangafolder.ini`. If you don't want to, remember to add the variant name to the `ToggleSwitch` database so that the suite remembers your selected variant.
S1-19027 commented 2025-03-18 11:29:35 -04:00 (Migrated from github.com)

Yes,of course only mangafolder3.ini.
I find that The EaseAction plugin's action lists are different.
I hope you can check them!

Yes,of course only `mangafolder3.ini`. I find that __The EaseAction plugin's action lists are different__. I hope you can check them!
Xenon257R commented 2025-03-18 22:06:08 -04:00 (Migrated from github.com)

Thank you for the confirmation.

I also worded my statement poorly - I meant to say that comparing your broken version to the original, non-fixed mangafolder.ini version had no differences, NOT comparing the broken version to the patched mangafolder3.ini. I wanted to see if something broke beforehand, but that didn't seem to be the case as it looks to be an existing problem that finally showed itself in your specific case.

The best reason I can come up with the 3 variant fixing your issue is that there was a race case of hiding vs. unhiding the MangaHitboxGroup meters. It went undetected because the 10-millisecond interval between the revealing after the persistent hiding was working fine for 99.99% of users, but on your computer the two actions manage to occur instantaneously while giving priority to the unhiding - thus re-hiding the about-to-be-revealed hitboxes. So mangafolder3.ini fixes it by simply not bothering to hide the clickable elements while transitioning between entries.

Thank you for helping me find a working solution to this rare issue - it will be patched in a future update, and until then you can use the working version for your personal use!

Thank you for the confirmation. I also worded my statement poorly - I meant to say that comparing your `broken` version to the **original, non-fixed `mangafolder.ini` version** had no differences, NOT comparing the broken version to the patched `mangafolder3.ini`. I wanted to see if something broke beforehand, but that didn't seem to be the case as it looks to be an existing problem that finally showed itself in your specific case. The best reason I can come up with the 3 variant fixing your issue is that there was a race case of hiding vs. unhiding the `MangaHitboxGroup` meters. It went undetected because the 10-millisecond interval between the revealing after the persistent hiding was working fine for 99.99% of users, but on your computer the two actions manage to occur instantaneously while giving priority to the unhiding - thus re-hiding the about-to-be-revealed hitboxes. So `mangafolder3.ini` fixes it by simply not bothering to hide the clickable elements while transitioning between entries. Thank you for helping me find a working solution to this rare issue - it will be patched in a future update, and until then you can use the working version for your personal use!
Sign in to join this conversation.
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
Xenon257R/blue-archive-rainmeter#37
No description provided.