-
-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firefox subwindows pop up on the wrong monitor #59
Comments
I suspect this might not strictly speaking be a notion bug, but a problem that is rare under other window managers. It has been a while, but if I recall correctly the situation is like this: X11 has a 'window hierarchy'. Notion creates a 'window' in this hierarchy for each screen, and places client windows relative to that intermediate 'window'. Now when deciding where to place the popup, applications may calculate the position relative to this parent 'window', but then use these coordinates in a place where they're interpreted as relative to the X11 root window. Since most window managers don't have an intermediate 'screen', this is not obvious. It might be a little more subtle than this even (might be related to EWMH _NET_VIRTUAL_ROOTS?), I don't quite remember. So this is not necessarily a notion bug, might even be a firefox bug (though rarely triggered) - probably in the grey area in between. |
I've found out Seamonkey 2.49.1 opens browser popup window in a new Notion tab (which is good and expected), while Firefox 57 just goes into this link in same tab without opening Notion or browser tab. |
Even though this might not only affect Notion, it would still be good to fix of course :). Though perhaps it might be a combination of fixes on the Notion and Firefox side. @md1023 What you describe sounds like a separate issue, right? Does it also happen on other window managers? |
@raboof yes, separate one. I prefer Seamonkey so there's no issue to me when using NotionWM :-) I used Unity or LXDE day ago, both browsers behaved properly (e.g. both created new browser windows). |
@md1023 please open a separate issue then :) |
I can confirm this happens to me too. Mostly on Firefox, but sometimes in Chrome also. After resizing the frame containing main window of an app, menus/popups appear in the right place. |
i was able to fix this by switching back to Firefox 56 |
I am also experiencing this problem. However old firefox won't solve it. |
what i do is |
@raboof was pointing in the right direction, if you just remove _NET_VIRTUAL_ROOTS atom set in ioncore/netwm.c, so _NET_VIRTUAL_ROOTS is not set, it works correctly. EDIT: Not so fast.. it's working if you have only one full frame, if it's splitted in half, it popups in the first (left) one. EDIT2: Btw, i3 may not be a reparenting WM (I haven't checked) so it might not need to set it. |
Regarding the first edit, it's clearly not the real solution as the popup is off a little bit to the top, probably the same amount of the size of the title bar. So it's not receiving the correct offset anyway. |
@knixeur I have a feeling that you are close to solution. Resizing a frame fixes pop-up positioning problem. Maybe the bits you need are there. |
Lately I've been using JetBrains Toolbox , and noticed that on first start Toolbox window fills whole frame, but when moved to different frame, or if the containing frame was resized, Toolbox window reverts to WM_NORMAL_HINTS(WM_SIZE_HINTS) size. |
@knixeur I've checked your patch. It made my second screen completely froze. Nothing was working on it (it seemed to be frozen basically). I could run "rofi" as it's kinda popup, but none of the other actions worked. Also when rofi was shown then it never disappeared. Everything returned back to normal on |
@pigmej lol, sorry, there's actually a commit that shouldn't be there and will cause a lot of trouble, I'll remove it and push back to the branch. Done, removed conflicting commit 😄 |
@knixeur I still have the lua script for current_desktop, maybe that would help? |
Sure, make a gist or maybe commit it inside contrib as an example. Anyways I'm starting to think this is more related to who's Firefox parent. |
@wilhelmy, thanks for consolidating tickets. I just read through this one, wasn't aware of it. @raboof wrote:
This matches the symptoms pretty well.
yeah, probably. I doubt it would be fruitful (since this affects only a small group of people), but maybe we should open an issue with firefox? |
There's this ticket: https://bugzilla.mozilla.org/show_bug.cgi?id=61000 Either way, I've been seeing strange behaviour on multihead setups also with OpenSCAD lately, such as the menu position being off. Even if it is also a firefox bug, I've been thinking we can work around it in notion by just putting the virtual roots/reparenting information in the right place. EWMH is a bit unclear on how all of this is supposed to work, maybe that's the reason for this confusion among application developers. |
interesting that you bring up OpenSCAD: I've also been experiencing issues with it: the rendered preview is sometimes frozen (I guess it's opengl): nothing updates when I zoom or pan or change code. My painful workaround is to restart X. Might be unrelated, though. Now another issue appeared: I can't even see the editor pane any more, but I guess that's a different issue probably due to an update of OpenSCAD. Since I don't need it right now I gave up looking for that editor frame. sorry for spamming likely unrelated issues here. |
haha LOL, from that mozilla ticket:
lmao. |
Yes, I'm not sure it was mentioned above but Firefox will base its subwindows at an absolute (0,0). Perhaps this can be worked around by fixing the way windows are reparented in Notion, but we don't know for sure. |
(marking this 'bug', as even if it remains to be seen if this is 'strictly speaking our fault', it is annoying enough to have priority) I checked this problem also exists on the latest notion3, so it's not a regression, so I guess it shouldn't hold up the Notion4 release. |
Definitely not. I don't know anything about notion4 release, but I don't think it should be delayed in any way because of this issue, which is more of a firefox issue (19 years old!!) and it's not notion4s job to work around that imo. |
Maybe I'll dig into it again at some point, be a good OSS citizen and fix the firefox issue :D. A reproducer with an application that is not so huge would be good though... But indeed not before notion4, just a couple of tasks left (https://github.com/raboof/notion/projects/1) |
I also had problems with OpenSCAD's menu bar menus popping up on the wrong screen. This is Qt software however. Maybe we can actually fix this issue within notion. I still haven't completely given up on this but I'm busy doing other stuff right now unfortunately (well, the stuff is interesting at least but not at all notion related) and will also look into it once I have more control over how I spend my time again. I really want to help 4.0 come along (or maybe 4.1) and this bug is definitely on my roadmap somewhere (not necessarily for 4.0, which I don't want to stall). |
Some more observations: Let's keep this issue specifically about the right-click context menu, to avoid confusion ;). You can easily reproduce the problem even on a machine with only one screen by setting the 'panning' of the screen, for example with something like When you open the popup near the left of the screen, it is still positioned too far to the left, but never so far to the left that it falls outside the screen. I have verified this with xtrace:
The 'x' never drops below '100' (which is my test panning). To me this sort of hints the problem occurs not in any of the (many) conversions 'late' in |
It seems that this problem is somehow related to notion not setting gtk has this code that tries to determine the extents through Note that this commit added a separate I haven't yet understood where this all ties into how Firefox creates its context menus. That GTK function does not get called at the moment a context menu is created, so it seems that it just contributes to some internal state either in Firefox or GTK. However, there seems to be an easier (and, ostensibly, more correct) way out of this problem: Setting I'm currently using this hack for testing:
|
Wow, that's awesome detective work and indeed seems to have the intended effect here, as well! Let's see if we can easily fill in the actual sizes of the decorations - and then I think this might warrant a 4.0.2 release ;) |
I've looked into this some more yesterday. The only way In short:
I was going to look into creating a patch to implement this properly today, but I find the ion codebase a little hard to work with, so any pointers would be appreciated. |
I think something along the lines of your patch above might be fine for now. Actually including the decorations size would of course be better, but this is not so easy since they're part of the frame (the parent of the client window) and can vary depending on the frame state. For now, perhaps setting them to 0,0,0,0 is better than nothing. I'd just suggest to move setting the property to its own method instead of adding it to |
Should fix #59 Co-Authored-By: Florian Larysch <[email protected]>
Should fix #59 Co-Authored-By: Florian Larysch <[email protected]>
Thanks a bunch. The end of an era. I'll update my notion and check whether this fixes any of the other issues I've been having with subwindow positions (I remember openscad). |
I have updated and ... it feels weird that finally, my firefox windows are appearing on the proper screen... But definitely works. I have not observed issues so far. |
oh wow. Thanks a LOT to everyone!! What version will this be released in? |
I released 4.0.2 with this fix |
@florolf Out of curiosity (since this has been bothering us for ages), how did you manage to figure this out? |
You expect me to remember after more than a month? ;) I'm not sure about the exact sequence of events, but I started out with staring at #59 (comment) gave the crucial hint that the However, this was not the whole picture, as just fixing the address translation in GTK results in incorrect behavior (the small offset mentioned in that comment). This still bugged me so I followed this back to the Firefox code, which breaks the abstraction and explicitly depends on It also seems that GTK4 does away with that code (or rather the public interface to it: GNOME/gtk@cb23d40 GNOME/gtk@987e787), but this represents a breaking API change, so the Firefox people will have to adapt their code as well. So it remains to be seen how this will break in the future. |
I have 3 monitors attached to my laptop: the internal screen, one to the left of it and one to the right.
When I keep firefox on the rightmost or center screen, some subwindows like context menus or other popup menus (e.g. built-in dropdowns or input suggestions on previously filled forms but not ones which are implemented in javascript, I assume because they're not handled directly by GTK) appear at the correct position, but on the leftmost screen.
If I keep firefox on the leftmost screen, the popup works as expected.
It also doesn't happen with thunderbird or other GTK2 or GTK3 software, but affects all versions of firefox I've used on this machine up until 57.
Any ideas? Can anyone confirm this issue as being notion specific and not a firefox bug?
The text was updated successfully, but these errors were encountered: