Solved DevTools delay after breakpoint
-
@Gwen-Dragon I found what was causing my problems. I've tested the debugging after each setting I've changed.
After setting the floating panel setting, I faced the problem. No matter if the panels should close automatically or not.
I continued making my settings like this and also while installing the extension and the problem didn't occur since I've disabled the floating panels.
Sadly I like the floating panels
-
@Gwen-Dragon said in DevTools delay after breakpoint:
Please explain, what does that mean, which panel?
When I activate the "Floating Panel" option, I'm facing the problem. No matter if I enable or disable "Auto-Close inactive Panel".
At the screenshot the setting is disabled and my debugger is working as expected.
-
@Gwen-Dragon said in DevTools delay after breakpoint:
@oudstand Thanks for that info, i will tell a developer and change bug report.
Thank you very much!
@Gwen-Dragon said in DevTools delay after breakpoint:
@oudstand Was the floating panel open when your issue happened?
No. All panels were closed. It was enough to change the setting to get the problem.
-
@Gwen-Dragon said in DevTools delay after breakpoint:
And i changed this thread to a Question with Solution
So other may not fall into the panel settings trap.That makes sense
-
@Gwen-Dragon Besten Dank, den wΓΌnsche ich auch und liebe GrΓΌΓe aus NRW
-
Hey @Gwen-Dragon do you know if any progress exists for this problem or maybe a workaround (expect disabling the floating panels)?
-
@Gwen-Dragon alright. Thanks for your answer
-
@Gwen-Dragon yes, that's what I'm afraid of
Personally I really like the floating web panels and use them frequently while developing and debugging.
-
@Gwen-Dragon That's true and I also understand that this bug might not be the most important ^^
-
@Gwen-Dragon for your interest, this mod is causing the same bug as enabling the floating panels:
https://forum.vivaldi.net/topic/48027/autohide-panels-switch-when-you-don-t-need-it/3?_=1593526764238 -
Also this CSS mod causes the bug:
https://forum.vivaldi.net/topic/10590/overlay-panels?page=1@Gwen-Dragon Are such information helpful?
-
@Gwen-Dragon For me this information was not to make the devs fix the bug, but maybe it makes it easier for them to find the bug ^^
-
@Gwen-Dragon Thanks a lot
-
@Gwen-Dragon as I've mentioned, this mod causes the same bug as the floating panels and tries to do the same.
After changing the code from this:
#main .inner { position: relative; } #panels-container { position: absolute; z-index: 1; top: 0; bottom: 0; background-color: var(--colorBg); } #panels-container.right { right: 0; }
To this:
#main .inner { position: relative; } #panels-container { position: absolute; z-index: 1; height: 100%; background-color: var(--colorBg); } #panels-container.right { right: 0; } #webview-container { margin-left: 34px; }
Everything works as expected. I don't know if the floating panels provided by Vivaldi work the same way, but maybe this information can also be helpful.
-
Is this bug with ExtJS application still relevant? I checked with 5.3.2679.55 and it is gone.
-
@DoctorG I've switched from ExtJS to Angular so I currently can't tell you.