GNOME Bugzilla – Bug 642976
blocked on select file to send via bluetooth
Last modified: 2011-03-02 15:31:13 UTC
Created attachment 181606 [details] choose file to send I was trying to send a file using bluetooth to a mobile phone device on gnome-shell and the window hanged on "choose file to send". Steps: 1. click on "Bluetooth" icon on system status area 2. Click on My Mobile device (micromax q7 in my case) -> Send files 3. A modal window appeared for "choose files to send" and hanged. It listed the files/folders in my home directory but unable to select. I was able to come out on clicking Bluetooth -> bluetooth settings. Attached is the error message shown on terminal.
Created attachment 181628 [details] [review] PopupMenuManager: don't throw exceptions if don't have focus stage.key_focus can be null, but passing null to _activeMenuContains throws (from gjs marshalling). In that case, just assume it returned false.
Comment on attachment 181628 [details] [review] PopupMenuManager: don't throw exceptions if don't have focus >+ let fromActive = false; >+ if (focus) >+ this._activeMenuContains(focus); ok, but I'd just say let fromActive = focus && this._activeMenuContains(focus);
Attachment 181628 [details] pushed as b9cb37d - PopupMenuManager: don't throw exceptions if don't have focus