[Desktop-packages] [Bug 1702501] Re: chromium-browser crashes soon after execution - Received signal 11 SEGV_MAPERR 000000000010

2017-07-07 Thread Sam M
*** This bug is a duplicate of bug 1702407 *** https://bugs.launchpad.net/bugs/1702407 Well I just got the same error. How it happens is a little bit different. I was browsing since around 2 hours with no issue, after boot. Then suddenly a few websites became laggy and then crash... Trying to

[Desktop-packages] [Bug 1246272] Re: Keyboard layout changing randomly

2014-08-09 Thread Sam M
*** This bug is a duplicate of bug 1240198 *** https://bugs.launchpad.net/bugs/1240198 I have the same issue (Ubuntu 14.04 with Unity): Swith between 'fr' and 'en' After boot my keyboard layout seems ALWAYS ok since I was able to connect with my old password (Note: I changed it, but the old o

[Desktop-packages] [Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
Ok, after fixing that, I started to get other error messages about attributes not existing, etc. It seems the function BibTexEditor._parse() is generally broken. So I have removed the call to _parse() in BibTexEditor.onsave Comment out line 92 in /usr/lib/gedit/plugins/latex/bibtex/editor.py No

[Desktop-packages] [Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
Yes, it shouldn't be there, or whatever type_record was previously will get reset, which is probably a bad thing. Apologies for being hasty. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to gedit-plugins in Ubuntu. https://bugs.launchpad.n

[Desktop-packages] [Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
Oh... the line: type_record.markers = [] Probably shouldn't be there? But it doesn't seem to break anything. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to gedit-plugins in Ubuntu. https://bugs.launchpad.net/bugs/1021245 Title: Error

[Desktop-packages] [Bug 1021245] Re: Error saving bibtex files

2012-10-03 Thread Sam M
The plugin appears to be attempting to clear a marker "bibtex-error" that doesn't exist. Change /usr/lib/gedit/plugins/latex/editor.py", line 493 to check whether a key actually exists or not before trying to remove it. Insert: if (not marker_type in self._marker_types.keys()):