[Bug 1390628] Re: Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

2015-11-08 Thread Mateo Salta
current workaround every time it happens for me:

- login
- alt+ctrl+t to open terminal
- sudo killall gnome-session
- move mouse to verify it is there
- login again...

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1390628

Title:
  Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1390628/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1390628] Re: Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

2015-11-08 Thread Mateo Salta
seems to still happen when I upgraded to 15.10.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1390628

Title:
  Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1390628/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1492481] Re: Feature request bug - show files behavior

2015-09-14 Thread Mateo Salta
I'm not sure they would consider it upstream, as they have different
goals then when the program is closely integrated into Ubuntu, I would
say it is a ux papercut for using it in unity, or other Ubuntu desktops
when launching from a file manager.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to file-roller in Ubuntu.
https://bugs.launchpad.net/bugs/1492481

Title:
  Feature request bug - show files behavior

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/file-roller/+bug/1492481/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1478125] Re: If "Icons on Desktop" is disabled, programs can still create files there, just they are not seen

2015-07-24 Thread Mateo Salta
I think this is only applicable only to gnome desktop - because in unity
I can turn off nautilus's desktop icons, and still have the link to the
desktop.

** Also affects: nautilus (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/1478125

Title:
  If "Icons on Desktop" is disabled, programs can still create files
  there, just they are not seen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1478125/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1390628] Re: Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

2015-05-18 Thread Mateo Salta
actually seems to be every time from cold boot - then I either need to
restart or kill the session on login to get it back

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1390628

Title:
  Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1390628/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 1390628] Re: Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

2015-05-02 Thread Mateo Salta
Happened to me on Unity upgrade from 14.10 to 15.04. Happens
unpredictably, have to restart and move mouse to make sure it is visible
before logging in.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1390628

Title:
  Mouse pointer invisible after upgrade to Ubuntu 14.10 and 15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1390628/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 930719] Re: black background in lubuntu on all gtk-applications

2013-03-04 Thread Mateo Salta
*** This bug is a duplicate of bug 938472 ***
https://bugs.launchpad.net/bugs/938472

Just happened to me in Kubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/930719

Title:
  black background in lubuntu on all gtk-applications

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-disk-utility/+bug/930719/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 36227] Re: gedit doesn't handle apostrophes correctly when spell-checking

2012-11-06 Thread Mateo Salta
Same 12.04 LTS, I looked over the source code and found that sections of 
"gedit-spell-checker" reference that it was modified from "gtkspell 2.0.2".
At gtkspell.sourceforge.net/ChangeLog references in a later version:

"version 2.0.11 (2005-05-27):
* Re-enable apostrophe word-breaking workarounds (GNOME bug #97545).
* Additional translations (see po/ChangeLog)."

This seems that they have found a fix for gtkspell and may help to solve
the problem in "gedit-spell-checker"

The relevent part of the code is:


static gboolean
gtkspell_text_iter_forward_word_end(GtkTextIter *i) {
GtkTextIter iter;

/* heuristic: 
 * if we're on an singlequote/apostrophe and
 * if the next letter is alphanumeric,
 * this is an apostrophe. */

if (!gtk_text_iter_forward_word_end(i))
return FALSE;

if (gtk_text_iter_get_char(i) != '\'')
return TRUE;

iter = *i;
if (gtk_text_iter_forward_char(&iter)) {
if (g_unichar_isalpha(gtk_text_iter_get_char(&iter))) {
return (gtk_text_iter_forward_word_end(i));
}
}

return TRUE;
}



Which it looks like someone has already adapted into a workaround here
https://bugzilla.gnome.org/show_bug.cgi?id=131576

Looks like It may have been abandoned, since the fix existed since 2004,
and the bug since around 2002,
https://bugzilla.gnome.org/show_bug.cgi?id=97545

10 years later...

** Bug watch added: GNOME Bug Tracker #97545
   https://bugzilla.gnome.org/show_bug.cgi?id=97545

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/36227

Title:
  gedit doesn't handle apostrophes correctly when spell-checking

To manage notifications about this bug go to:
https://bugs.launchpad.net/gedit/+bug/36227/+subscriptions

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs