Numan Zaheer Ahmed
Numan Zaheer Ahmed
@palopezv I don't think K9 opens Firefox specifically, I was just sharing my personal experience. It just opens your default browser as Android's CustomTabs(https://developer.chrome.com/docs/android/custom-tabs) iirc. Both Firefox and Chrome implement...
Maybe we can do both builds for short term like how qbittorrent Project did with qt6 migration. Not sure how much maintenance nightmare will be.
Since 2022 is close to an end, any timeline on this? https://github.com/microsoft/terminal/issues/1947 (issue that I am facing)+ https://github.com/microsoft/terminal/issues/1860 is making it almost impossible to use when SSHing into lot of...
This MR broke use_mingw flag on windows: ``` PS D:\Repo\godot> scons use_mingw=yes scons: Reading SConscript files ... Automatically detected platform: windows Auto-detected 24 CPU cores available for build parallelism. Using...
> Sounds like: > > * [physics_object_picking_first_only breaks mouse enter/exit/motion events #89641](https://github.com/godotengine/godot/issues/89641) Looks similar but not sure why it's only seen when exporting to Android in my case. Will test...
MR https://github.com/godotengine/godot/pull/89643 linked to issue https://github.com/godotengine/godot/issues/89641 does not fix my issue. Tested the changes locally. My issue is still reproduced on Android export(both with and without both `set_physics_object_picking_*` flags enabled)...
Tested some more and found that all 5 `CollisionObject2D`(inherited by Area2D) signals don't work on Android. Not just `input_event` signal. It also affects `StaticBody2D` which inherits `PhysicsBody2D`(that inherits CollisionObject2D like...
Finally found it after debugging it by adding and removing `get_tree().quit()` on `viewport.cpp`'s `_process_picking` function. Couldn't find any other way to debug Android only input issue. The commit since which...
> From what I can tell, #89757 requires a different solution. So this is not a duplicate. Makes sense. Workaround `get_viewport().notification(NOTIFICATION_VP_MOUSE_ENTER)` works so it's probably same root cause but requires...
> Based on @Anutrix's comment it seems the following code seems to be a working workaround. Although I'm in doubt whether notifying in the Process method is the correct place....