[Bug 1506744] Re: Newly installed applications do not show in the dash

2016-06-23 Thread Allison Ryan Lortie
To elaborate on the previous remark: why didn't we just replace: menu_monitor_queue_event (event_info); with: g_timeout_add_seconds (2, menu_monitor_queue_event, event_info); (and make sure menu_monitor_queue_event() returns FALSE)? -- You received this bug notification because you are

[Bug 1506744] Re: Newly installed applications do not show in the dash

2016-06-23 Thread Allison Ryan Lortie
The latest patch looks good to me, but with a couple of notes (no need to fix these): - using the _full() version of the timeout call is not necessary here - now that this patch is simplified it becomes easy to see how all of this is just putting values into one structure and then later moving

[Bug 1506744] Re: Newly installed applications do not show in the dash

2016-05-24 Thread Allison Ryan Lortie
The patch in comment 42 is not acceptable, for two big reasons. First: you need to hold a ref on the GFile object when you put it into the info struct. This means that you cannot simply use g_free for the struct: you need to write a custom free func that handles the unref as well. Also: you

[Bug 1383486] Re: menu to select zoom doesn't drop down

2014-10-28 Thread Ryan Lortie
This was fixed upstream here: https://git.gnome.org/browse/gtk+/commit/?id=a1af365566161067c4eb246a1c66e7914f119537 Unfortunately this doesn't backport cleanly. I'll try to rebase the patch. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is

[Bug 1383486] Re: menu to select zoom doesn't drop down

2014-10-28 Thread Ryan Lortie
It will work if we also take 0dcffe3cd421555926e74002d5297d6dac0886e7, which is another bugfix that may be worth having. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to evince in Ubuntu. https://bugs.launchpad.net/bugs/1383486 Title:

[Bug 1383486] Re: menu to select zoom doesn't drop down

2014-10-28 Thread Ryan Lortie
Both have been pushed upstream on gtk-3-12 branch. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to evince in Ubuntu. https://bugs.launchpad.net/bugs/1383486 Title: menu to select zoom doesn't drop down To manage notifications

[Bug 1344386] Re: Do.exe crashed with SIGABRT in __GI_raise()

2014-08-19 Thread Ryan Lortie
GLib completely changed the implementation of GMutex from being based on POSIX primatives to being based on a home-grown solution that is substantially faster (and with room for further improvements). This caused deadlocks/crashes in some Vala programs, and I wonder if the same thing is going on

[Bug 1344386] Re: Do.exe crashed with SIGABRT in __GI_raise()

2014-08-19 Thread Ryan Lortie
The new mutex implementation detects the (error) case when you try to unlock a mutex that is not locked. Callers are supposed to acquire the Gtk lock before calling gtk_main() and I guess gnome-do isn't doing that... POSIX silently ignores this... -- You received this bug notification because

[Bug 1344386] Re: Do.exe crashed with SIGABRT in __GI_raise()

2014-08-19 Thread Ryan Lortie
Invalid for glib since the bug is confirmed as being in gnome-do (not acquiring the lock before gtk_main). ** Changed in: glib2.0 (Ubuntu) Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in

[Bug 1344386] Re: Do.exe crashed with SIGABRT in __GI_raise()

2014-08-19 Thread Ryan Lortie
** Also affects: do Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in Ubuntu. https://bugs.launchpad.net/bugs/1344386 Title: Do.exe crashed with SIGABRT in __GI_raise() To

[Bug 1296233] Re: increase in number of wakeups in recent release in indicator-datetime

2014-03-24 Thread Ryan Lortie
This is my fault indeed. I introduced the code that added this watch without remembering that it does the wrong thing in the case of missing directories. I think the correct fix here is to reevaluate our approach to dealing with missing files in the inotify monitor... -- You received this bug

[Bug 1284647] Re: gsettings crashed with SIGSEGV in g_settings_backend_dispatch_signal()

2014-02-25 Thread Ryan Lortie
Confirmed GLib bug: https://bugzilla.gnome.org/show_bug.cgi?id=710367 ** Bug watch added: GNOME Bug Tracker #710367 https://bugzilla.gnome.org/show_bug.cgi?id=710367 -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in

[Bug 1246516] Re: Memory from slice allocator passed to PyObject_Free

2013-10-31 Thread Ryan Lortie
This is not the same as the error we were seeing before: that error was an invalid read on memory that was just before a piece of memory that was allocated through the slice allocator. There is no gslice in this trace... -- You received this bug notification because you are a member of Ubuntu

[Bug 1222053] Re: per-session gsettings overrides

2013-09-08 Thread Ryan Lortie
Worth noting that it's already possible to add new directories to the schema search path via GSETTINGS_SCHEMA_DIR. -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in Ubuntu. https://bugs.launchpad.net/bugs/1222053 Title:

[Bug 922968] Re: shouldn't queue a second suspend if the machine is already suspending

2013-06-17 Thread Ryan Lortie
hi James, Unfortunately we handle suspend in a much more ad-hoc way on precise. There is no logind or systemd-shim through which all suspend requests are handled. These changes are therefore not really possible to backport. -- You received this bug notification because you are a member of

[Bug 922968] Re: shouldn't queue a second suspend if the machine is already suspending

2013-06-04 Thread Ryan Lortie
We fixed this issue in saucy by moving responsibility for handling suspend into systemd-shim and adding a check there to ignore suspend requests that come in during a very small window after waking up. From personal reports, this has solved the issue for everyone who has tried it. I'm not

[Bug 1159036] Re: gedit 3.7 doesn't display application menu

2013-03-24 Thread Ryan Lortie
*** This bug is a duplicate of bug 999827 *** https://bugs.launchpad.net/bugs/999827 This is an old bug in the appmenu indicator. gedit gives an appmenu via GMenu but also has oldschool GtkMenu menus for the menubar. Unity can't deal with both of these at the same time. ** This bug has

[Bug 1154370] [NEW] [precise SRU] crash due to improper handling of / in GSettings

2013-03-12 Thread Ryan Lortie
Public bug reported: GSettings in GLib 2.32.3 has a bug where the changed signal is emitted for child settings objects as if they were keys ending with /. That was fixed upstream and merged into the glib-2-32 stable branch here:

[Bug 1153567] Re: [FFE] Use systemd-services rather than ubuntu-system-service systemdcompatibility code

2013-03-11 Thread Ryan Lortie
Note also that this depends on the systemd-shim MIR being approved: bug 1153633 -- 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/1153567 Title: [FFE] Use

[Bug 1153567] Re: [FFE] Use systemd-services rather than ubuntu-system-service systemdcompatibility code

2013-03-11 Thread Ryan Lortie
You need to ensure that you manually install the PPA versions of all 5 components listed above (since at least one of them is out of date in the PPA at the time of writing). Also need to install systemd-shim (which will eventually make it into at least a recommends of ubuntu- desktop at some

[Bug 1071950] Re: gnome-settings-daemon dconf to gconf plugin causes settings to be lost

2012-10-30 Thread Ryan Lortie
Ready to go, imho. Marga: one tiny point that I missed the first time around. GObject signals are nominally written like signal-name rather than signal_name. Your patch is fine as-is -- it's mostly a matter of style in this case. -- You received this bug notification because you are a member

[Bug 1071950] Re: gnome-settings-daemon dconf to gconf plugin causes settings to be lost

2012-10-29 Thread Ryan Lortie
Functionally, the patch looks pretty good to me. Thanks for the attention to detail with respect to the signal disconnection. One small detail is that the function you introduce should be marked 'static' (since it is not used outside of the current file). Otherwise, everything else looks fine.

[Bug 1071950] Re: gnome-settings-daemon dconf to gconf plugin causes settings to be lost

2012-10-27 Thread Ryan Lortie
The issue specifically: 'dconf update' emits a signal that says everything has changed Meanwhile, we have the configuration migration stuff watching for changes and assuming that if there was a change in dconf it means that we should sync it up to gconf. The trouble comes that everything has

[Bug 1070905] [NEW] a11y panel calls g_settings_new() on (uninstalled) overlay scrollbar schema

2012-10-24 Thread Ryan Lortie
Public bug reported: We have a patch in the control-centre that depends on a schema that may not be installed (if overlay scrollbars have been removed). This causes the entire control centre to crash when trying to open the a11y panel if overlay scrollbars have been uninstalled (which is

[Bug 1070905] Re: a11y panel calls g_settings_new() on (uninstalled) overlay scrollbar schema

2012-10-24 Thread Ryan Lortie
hi Will, Two notes: 1) you don't need to set this variable to NULL -- it will already be NULL by virtue of being in a GObject priv structure. 2) the code further down calls g_settings_set() on the object without first checking if it will be NULL, so in the case that you don't do

[Bug 1044322] Re: indicator-messages-service crashed with assert in g_menu_exporter_name_vanished()

2012-10-16 Thread Ryan Lortie
Fixed upstream here: http://git.gnome.org/browse/glib/commit/?id=3766b7b5cd0f22d2773c7efc8b52fc2f214d0372 Distro backport coming soon... -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in Ubuntu.

[Bug 1058250] Re: conditionalise empathy u-o-a dependency

2012-10-03 Thread Ryan Lortie
This is empathy 3.5.92-0ubuntu2 in Q. ** Changed in: empathy (Ubuntu) Status: Incomplete = New -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to empathy in Ubuntu. https://bugs.launchpad.net/bugs/1058250 Title: conditionalise

[Bug 1058250] [NEW] conditionalise empathy u-o-a dependency

2012-09-28 Thread Ryan Lortie
Public bug reported: Empathy currently has a hard dependency on ubuntu-online-accounts. ubuntu-online-accounts is currently not working. A workaround is to directly run empathy-accounts from the commandline, but this is hardly discoverable. Ideally, we should only have this patch butchery

[Bug 968268] Re: Cannot permanently add wallpaper to 'Pictures Folder'

2012-04-24 Thread Ryan Lortie
Seb: we discussed this on IRC a few weeks ago and I mentioned that this is a known and intended side effect. Also note that the wallpaper is never really added to the pictures folder -- just to a cache directory that appears under Pictures Folder in the UI (which is a bit of a lie, imho). It is

[Bug 974938] Re: Process gsettings prevents logging in

2012-04-15 Thread Ryan Lortie
Looking at these traces I have a hard time beleiving this is a glib/gsettings problem. It rather looks like some deadlock between fork() and the ldap nss module... -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in Ubuntu.

[Bug 974938] Re: Process gsettings prevents logging in

2012-04-09 Thread Ryan Lortie
Can you get a backtrace of the stuck gsettings process? -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to glib2.0 in Ubuntu. https://bugs.launchpad.net/bugs/974938 Title: Process gsettings prevents logging in To manage notifications

[Bug 965493] Re: cpu race between nautilus, hud- and unity-service

2012-04-05 Thread Ryan Lortie
Fix is committed upstream now too. -- 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/965493 Title: cpu race between nautilus, hud- and unity-service To manage notifications about

[Bug 915241] Re: Update menubar patches

2012-01-12 Thread Ryan Lortie
updated patch ** Patch added: 043_ubuntu_menu_proxy.patch https://bugs.launchpad.net/ubuntu/+source/gtk+3.0/+bug/915241/+attachment/2669362/+files/043_ubuntu_menu_proxy.patch -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to

[Bug 730183] Re: evince crashed with SIGSEGV in getenv()

2011-09-17 Thread Ryan Lortie
Is it possible that setenv() is being called from another thread? This could end up being a huge can of worms -- all of our libraries do things like calling into gettext() from random arbitrary worker threads and gettext() calls (thread-unsafe) getenv(). In effect, it's not safe to call setenv()

[Bug 334865] Re: gvfsd-trash crashed with SIGSEGV in IA__g_file_equal()

2009-03-02 Thread Ryan Lortie
i'm quite certain this is the same as bug 332554 that '??' appearing in the stack trace is almost certainly dir_watch_parent_changed() since this is a signal handler that calls g_file_equal(). -- gvfsd-trash crashed with SIGSEGV in IA__g_file_equal() https://bugs.launchpad.net/bugs/334865 You

[Bug 333791] Re: gvfsd-trash crashed with SIGSEGV in g_closure_invoke()

2009-03-02 Thread Ryan Lortie
it's calling g_vfs_job_failed_from_error with error == NULL. -- gvfsd-trash crashed with SIGSEGV in g_closure_invoke() https://bugs.launchpad.net/bugs/333791 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing

[Bug 333791] Re: gvfsd-trash crashed with SIGSEGV in g_closure_invoke()

2009-03-02 Thread Ryan Lortie
which is because trash_item_restore NEVER EVER EVER sets error. *doh* will have a patch for this quite soon :) -- gvfsd-trash crashed with SIGSEGV in g_closure_invoke() https://bugs.launchpad.net/bugs/333791 You received this bug notification because you are a member of Ubuntu Desktop Bugs,

[Bug 332554] Re: gvfsd-trash crashed with SIGSEGV in g_type_check_instance_is_a()

2009-02-27 Thread Ryan Lortie
Ok. Fixed upstream... I hope :) (gvfs svn revision 2261) -- gvfsd-trash crashed with SIGSEGV in g_type_check_instance_is_a() https://bugs.launchpad.net/bugs/332554 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs

[Bug 332554] Re: gvfsd-trash crashed with SIGSEGV in g_type_check_instance_is_a()

2009-02-21 Thread Ryan Lortie
i have some approximate idea of what the problem is and i can reproduce a variant of this bug. it's an insane logic problem and i have to think about it a little more. i'll have a fix in a little while. -- gvfsd-trash crashed with SIGSEGV in g_type_check_instance_is_a()

[Bug 325701] Re: gvfsd-trash crashed with SIGSEGV in pthread_cond_wait@@GLIBC_2.3.2()

2009-02-18 Thread Ryan Lortie
Thanks for your reply. I'm going to assume, then, that this is a duplicate of #318661. If you get any additional crashers please report them. Cheers ** Changed in: gvfs (Ubuntu) Status: Triaged = Fix Released -- gvfsd-trash crashed with SIGSEGV in pthread_cond_wait@@GLIBC_2.3.2()

[Bug 325701] Re: gvfsd-trash crashed with SIGSEGV in pthread_cond_wait@@GLIBC_2.3.2()

2009-02-17 Thread Ryan Lortie
Hi Bogdan If you can remember: how long had you been logged in when the crash occurred? Although this is flagged as being a crasher in version 1.1.5, I am suspicious of the accuracy of that information. Séb packaged 1.1.5 on the 2nd and this bug is reported on the 5th. Even if you are very

[Bug 323321] Re: Emptying deleted symbolic links in Trash deletes folder contents.

2009-01-31 Thread Ryan Lortie
The bug was in gvfs. ** Changed in: nautilus (Ubuntu) Status: New = Invalid -- Emptying deleted symbolic links in Trash deletes folder contents. https://bugs.launchpad.net/bugs/323321 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug

[Bug 201786] Re: ssh Agent admitted failure to sign using the key

2008-05-29 Thread Ryan Lortie
I have this problem on my computer at work but on none of my other computers. Two things that are unique about my work computer compared to the others 1) It has been upgraded many times (since breezy, I think) 2) It is non-Intel (PowerPC). Is everyone else here falling under one or both of

[Bug 181893] Re: clicking on an https link when the remote site has invalid credentials does not work

2008-02-03 Thread Ryan Lortie
this happens for me too, on hardy. even going directly to a site with invalid security information (by typing the https:// url into the address bar) doesn't work at all. it's as if the hook from gecko into epiphany to show the are you sure? dialog is broken. ** Changed in: epiphany-browser

[Bug 141120] omg insane evolution plugin overload!!

2007-09-19 Thread Ryan Lortie
Public bug reported: just installed gutsy evolution, out of the box, has about a million evolution plugins installed -- all of which are enabled. this makes evolution slow and more prone to crashes i've disabled just about all of them now, but it'd be nice if the majority were disabled by

[Bug 57784] Re: after xrandr desktop icons can go missing

2007-03-19 Thread Ryan Lortie
*mumble* Yes. The problem still exists. ** Changed in: nautilus (Ubuntu) Status: Rejected = Confirmed -- after xrandr desktop icons can go missing https://launchpad.net/bugs/57784 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 92614] vrms doesn't like to tango

2007-03-15 Thread Ryan Lortie
Public bug reported: Binary package hint: tango-icon-theme [EMAIL PROTECTED]:~$ vrms Non-free packages installed on acquiesce tango-icon-theme Tango Icon theme 1 non-free packages, 0.1% of 1435 installed packages. ** Affects: tango-icon-theme (Ubuntu) Importance:

[Bug 70368] Re: bug-buddy can block 'x-session-manager', preventing new X processes

2007-02-09 Thread Ryan Lortie
I had this problem too and just filed directly upstream. Dan Winship has proposed a fix to bug buddy to make it avoid registering for session management (thus breaking the loop). -- bug-buddy can block 'x-session-manager', preventing new X processes https://launchpad.net/bugs/70368 --

[Bug 84324] bogus recently used file causes endless loop of crashes

2007-02-09 Thread Ryan Lortie
Public bug reported: Binary package hint: libgtk2.0-0 more recently used badness causing the panel to crash there are other bugs like this but they've all been closed (some saying this is fixed for dapper). this one is happening in up-to-date edgy right now. copy this text to your

[Bug 41931] Re: Copying files from OS X causes errors with icon files

2007-01-31 Thread Ryan Lortie
*** This bug is a duplicate of bug 18562 *** ** This bug has been marked a duplicate of bug 18562 nautilus gives perplexing error message while copying some files to vfat -- Copying files from OS X causes errors with icon files https://launchpad.net/bugs/41931 -- desktop-bugs mailing list

[Bug 56610] Re: Automatic search from address entry doesn't work anymore

2007-01-30 Thread Ryan Lortie
superficially, it works. -- Automatic search from address entry doesn't work anymore https://launchpad.net/bugs/56610 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 63025] Re: MacBook doesn't dim monitor on battery

2007-01-23 Thread Ryan Lortie
*** This bug is a duplicate of bug 72287 *** ** This bug has been marked a duplicate of bug 72287 Apple MacBook backlight brightness doesn't work -- MacBook doesn't dim monitor on battery https://launchpad.net/bugs/63025 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 61502] Re: Macbook backlight support

2007-01-23 Thread Ryan Lortie
*** This bug is a duplicate of bug 72287 *** ** This bug is no longer a duplicate of bug 63025 MacBook doesn't dim monitor on battery ** This bug has been marked a duplicate of bug 72287 Apple MacBook backlight brightness doesn't work -- Macbook backlight support

[Bug 72287] Re: Apple MacBook backlight brightness doesn't work

2007-01-23 Thread Ryan Lortie
It turns out that on suspend/resume, the backlight control register is clobbered to all-zeros. The only way to fix this is to use vbetool to save/restore the BIOS state. This is currently broken on the macbook due to the init scripts being out of order (vbesave runs before acpid, and on macbook

[Bug 63025] Re: MacBook doesn't dim monitor on battery

2007-01-23 Thread Ryan Lortie
*** This bug is a duplicate of bug 72287 *** no. the macbook backlight support definitely won't work on any ubuntu live cd that has yet been released. -- MacBook doesn't dim monitor on battery https://launchpad.net/bugs/63025 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 72287] Re: Apple MacBook backlight brightness doesn't work

2007-01-18 Thread Ryan Lortie
Hi Martin Patch is written and has been sent upstream. David has said that he will try to make a release in the coming weeks, so should be good to go for feisty. Cheers ** Bug watch added: Freedesktop Bugzilla #9702 https://bugs.freedesktop.org/show_bug.cgi?id=9702 ** Also affects: hal

[Bug 72287] Re: Apple MacBook backlight brightness doesn't work

2007-01-10 Thread Ryan Lortie
Hi Martin I'm more or less using what I describe on that page. I'm working on a better solution for the longterm. Maybe I'll get some time to hack on it this week at the conference. (I wouldn't be suprised if I don't, though) :) I'll keep you posted. -- Apple MacBook backlight brightness

[Bug 22606] Re: the panel calendar applet treats 'all day' appointments incorrectly

2006-12-22 Thread Ryan Lortie
yes. ** Changed in: gnome-panel (Ubuntu) Status: Needs Info = Confirmed -- the panel calendar applet treats 'all day' appointments incorrectly https://launchpad.net/bugs/22606 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 71264] patch to get better backtraces

2006-11-10 Thread Ryan Lortie
Public bug reported: Binary package hint: bug-buddy use this. ** Affects: bug-buddy (Ubuntu) Importance: Undecided Status: Unconfirmed -- patch to get better backtraces https://launchpad.net/bugs/71264 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 71264] Re: patch to get better backtraces

2006-11-10 Thread Ryan Lortie
and then modify /usr/share/bug-buddy/gdb-cmd to read like this: signal SIGTRAP bt thread apply all bt full q ** Attachment added: foo. http://librarian.launchpad.net/5041870/libgnomeui-crash.patch -- patch to get better backtraces https://launchpad.net/bugs/71264 -- desktop-bugs mailing

[Bug 61186] system-tools-backends abuses the timers in a big way

2006-09-19 Thread Ryan Lortie
Public bug reported: Binary package hint: system-tools-backends 20 wakeups per second from the system-tools-backends perl script. caused by this line in /usr/share/system-tools- backends-2.0/scripts/SystemToolsBackends.pl Net::DBus::Reactor-main-add_timeout (50, Net::DBus::Callback-new(method

[Bug 45173] Re: invalid semantic overloading of gnome-logout icon in Human theme

2006-09-11 Thread Ryan Lortie
Daniel: does the activity on this bug mean that you're reconsidering it? :) -- invalid semantic overloading of gnome-logout icon in Human theme https://launchpad.net/bugs/45173 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 57784] after xrandr desktop icons can go missing

2006-08-25 Thread Ryan Lortie
Public bug reported: Binary package hint: nautilus 1) Do xrandr -o left 2) Enjoy your rotated desktop for a bit. Make sure to move some icons to the bottom of the screen. 3) Get bored of this. 4) xrandr -o normal. The icons that you moved to the bottom are gone now. You have no way to get

[Bug 56738] Re: Thumbnailing slows copying files

2006-08-23 Thread Ryan Lortie
wow. i got bit by this just yesterday but had no idea what was causing it. this bug is incredibly evil. -- Thumbnailing slows copying files https://launchpad.net/bugs/56738 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 54445] Re: [edgy] Gaim crashes when I click on save icon

2006-08-02 Thread Ryan Lortie
This is probably the same as the muine crasher. Essentially: dbus locking has two states: initialised and not If it's not initialised then the function to allocate a lock returns a bogus value (0xabcdef) and the lock and unlock functions are no-ops. If it's initialised then the new function

[Bug 54261] every single gtk app wakes up on button or modifier key press

2006-07-27 Thread Ryan Lortie
Public bug reported: Binary package hint: libgtk2.0-0 i reported this bug to mclasen at guadec. he fixed it very rapidly in gtk 2.9. upstream bug is here: http://bugzilla.gnome.org/show_bug.cgi?id=346079 12:28 desrt mclasen; i imagine it wouldn't be very hard to cherry-pick your xkb fix out

[Bug 54261] Re: every single gtk app wakes up on button or modifier key press

2006-07-27 Thread Ryan Lortie
this will have a small effect on battery performance on laptops but not too much. it's probably worth including only if doing another libgtk release for another reason. that said, it would personally make my life easier (and the lives of other people stracing their apps to find out if they wake

[Bug 39024] Re: [Dapper] Gedit fails to save to remote location if creating new file while using sftp

2006-05-21 Thread Ryan Lortie
It looks like upstream has rewritten a bunch of that code. Near as I can tell their rewrite addresses the issue. -- [Dapper] Gedit fails to save to remote location if creating new file while using sftp https://launchpad.net/bugs/39024 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 45918] sftp module can't handle partially valid hostkeys, gives confusing error

2006-05-21 Thread Ryan Lortie
Public bug reported: [EMAIL PROTECTED]:~$ ssh vanilla Warning: the RSA host key for 'vanilla' differs from the key for the IP address '71.19.4.161' Offending key for IP in /home/desrt/.ssh/known_hosts:91 Matching host key in /home/desrt/.ssh/known_hosts:95 Are you sure you want to continue

[Bug 39024] Re: [Dapper] Gedit fails to save to remote location if creating new file while using sftp

2006-05-19 Thread Ryan Lortie
** Attachment added: new version http://librarian.launchpad.net/2758978/gnome-vfs-0ubuntu8.debdiff -- [Dapper] Gedit fails to save to remote location if creating new file while using sftp https://launchpad.net/bugs/39024 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 45173] Re: invalid semantic overloading of gnome-logout icon in Human theme

2006-05-18 Thread Ryan Lortie
This isn't such a problem, as the gnome-shutdown icon exists in other themes (and is even a power switch!) -- invalid semantic overloading of gnome-logout icon in Human theme https://launchpad.net/bugs/45173 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 39024] Re: [Dapper] Gedit fails to save to remote location if creating new file while using sftp

2006-05-18 Thread Ryan Lortie
The protocol error happens, not on first save, but rather, if the file does not yet exist on the remote host. You can get it to happen by opening a file in gedit, erasing the file on the remote host (logged in, using 'rm') then clicking 'save'. When I do this, however, I don't get an empty file

[Bug 39024] Re: [Dapper] Gedit fails to save to remote location if creating new file while using sftp

2006-05-18 Thread Ryan Lortie
The problem is caused by iobuf_read_file_info() in the gnome-vfs sftp method. if (id != expected_id || type != SSH2_FXP_ATTRS) { buffer_free (msg); return GNOME_VFS_ERROR_PROTOCOL_ERROR; } else if (type == SSH2_FXP_STATUS) {

[Bug 44579] Re: gnome-screensaver flickers every 30 seconds

2006-05-18 Thread Ryan Lortie
** Attachment added: new version to deal with new ubuntuversion number http://librarian.launchpad.net/2735224/stop_30second_flicker.debdiff -- gnome-screensaver flickers every 30 seconds https://launchpad.net/bugs/44579 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 44579] Re: gnome-screensaver flickers every 30 seconds

2006-05-18 Thread Ryan Lortie
Uploaded by ogra (thanks). ** Changed in: gnome-screensaver (Ubuntu) Status: Unconfirmed = Fix Released -- gnome-screensaver flickers every 30 seconds https://launchpad.net/bugs/44579 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 45472] panel sets invalid style on applet handles on startup

2006-05-18 Thread Ryan Lortie
Public bug reported: Binary package hint: gnome-panel the panel, on startup, sets the wrong style on the handles of applets. instead of being drawn in a specific colour (if that's the setting you have on your panel) they're drawn with a normal theme (grey) background. this happens in lots of

[Bug 45472] Re: panel sets invalid style on applet handles on startup

2006-05-18 Thread Ryan Lortie
i should clarify: this only happens when you have a background _colour_ set with no transparency. -- panel sets invalid style on applet handles on startup https://launchpad.net/bugs/45472 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 45173] Re: invalid semantic overloading of gnome-logout icon in Human theme

2006-05-17 Thread Ryan Lortie
I'm not questioning using this icon. It's a very nice icon and it makes a lot sense to use it for the new logout dialog. If you use it, though, you should name it properly (as gnome-shutdown - since it's a switch). Calling it gnome-logout is conceptually wrong and causes brokenness. It's also

[Bug 33002] Re: logout dialog UI objections

2006-05-17 Thread Ryan Lortie
I should point out bug 45173 here since it definitely falls into the category of logout dialog UI objection. -- logout dialog UI objections https://launchpad.net/bugs/33002 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 45169] gnome-volume-manager running in a background login hijacks hotplugged storage devices

2006-05-16 Thread Ryan Lortie
Public bug reported: Binary package hint: gnome-volume-manager 1. log in user 'kiley' 2. switch to new user 3. log in user 'katie' 4. katie plugs in her mp3 player 5. the g-v-m in kiley's session mounts the device, preventing katie from using it. ** Affects: gnome-volume-manager (Ubuntu)

[Bug 45169] Re: gnome-volume-manager running in a background login hijacks hotplugged storage devices

2006-05-16 Thread Ryan Lortie
erp. sorry. just upgraded now :) ** Changed in: gnome-volume-manager (Ubuntu) Status: Unconfirmed = Fix Released -- gnome-volume-manager running in a background login hijacks hotplugged storage devices https://launchpad.net/bugs/45169 -- desktop-bugs mailing list

[Bug 45173] invalid semantic overloading of gnome-logout icon in Human theme

2006-05-16 Thread Ryan Lortie
Public bug reported: Binary package hint: ubuntu-artwork The /usr/share/icons/Human/48x48/actions/gnome-logout.png icon has been changed to a power switch to deal with the confusion caused by the Ubuntu logout dialog. Unfortunately, this is semantically broken and the brokenness manifests

[Bug 44579] gnome-screensaver flickers every 30 seconds

2006-05-13 Thread Ryan Lortie
Public bug reported: Binary package hint: gnome-screensaver gnome-screensaver flickers every 30 seconds. if you have a screensaver like Swirl this causes the entire screen to go black until it gets repainted (which takes a while). To see: 1. Use swirl as your screensaver. 2. Lock the screen.

[Bug 44579] Re: gnome-screensaver flickers every 30 seconds

2006-05-13 Thread Ryan Lortie
Ok. The problem is caused by the so-called watchdog timer. It calls gtk_window_present every 30 seconds. gtk_window_present includes a call to gdk_window_show which causes the flicker. ** Attachment added: debdiff to fix the problem

[Bug 44579] Re: gnome-screensaver flickers every 30 seconds

2006-05-13 Thread Ryan Lortie
I'm quite positive that it's a gnome-screensaver bug. You can see flickering with other hacks too -- the only different is that with swirl the display is very static and doesn't get updated frequently. The attached patch actually fixes the problem (which, btw does not occur when I do what you

[Bug 33002] Re: logout dialog UI objections

2006-05-11 Thread Ryan Lortie
The problem you mention is addressed in bug 39371. -- logout dialog UI objections https://launchpad.net/bugs/33002 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 12893] Re: Shouldn't put .Trash-$USER on removable devices

2006-05-02 Thread Ryan Lortie
Some ideas: 1) Does .Trash-desrt ever have a good purpose? - is created when files are not on same FS as homedir? - is it useful for something like /mnt/windows? - will this clutter up your c:\ drive? - maybe just never create this directory 2) Maybe don't create .Trash-desrt if the

[Bug 39371] Re: fadeout effect on displaying the logout dialog box looks bad

2006-05-02 Thread Ryan Lortie
I agree. gksudo is quite fine (I don't get the bug). -- fadeout effect on displaying the logout dialog box looks bad https://launchpad.net/bugs/39371 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 19101] Re: nautilus's clever anti-hax0r detection is really dumb

2006-04-28 Thread Ryan Lortie
yes ** Changed in: nautilus (Ubuntu) Status: Needs Info = Confirmed -- nautilus's clever anti-hax0r detection is really dumb https://launchpad.net/bugs/19101 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 19101] Re: nautilus's clever anti-hax0r detection is really dumb

2006-04-28 Thread Ryan Lortie
this is definitely different from bug 41772 (but caused by a similar issue -- two different systems for detecting mime type). this bug is much easier to fix and i'm astounded that it hasn't been fixed yet. -- nautilus's clever anti-hax0r detection is really dumb

[Bug 41226] the escape key doesn't work in the unlock dialog

2006-04-24 Thread Ryan Lortie
Public bug reported: Affects: gnome-screensaver (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: the escape key doesn't work in the unlock dialog sometimes clicking on the cancel button with the mouse also fails (but i can't reproduce this

[Bug 33002] Re: logout dialog UI objections

2006-04-21 Thread Ryan Lortie
Is there any chance of getting the default behaviour changed to match upstream? The upstream solution is very clearly _more sane_ (even if it doesn't have all of the functionality/flash of the Ubuntu one). Some things to keep in mind: - Lock is already on the menu - Suspend/hibernate don't

[Bug 39796] please wait while unmounting dialog ought not to be displayed for CDs

2006-04-16 Thread Ryan Lortie
Public bug reported: Affects: nautilus (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: CDs take a while to eject and block while ejecting. this causes the please wait while unmounting dialog to be displayed. this dialog contains some

[Bug 39371] Re: fadeout effect on displaying the logout dialog box looks bad

2006-04-13 Thread Ryan Lortie
I don't understand why lowering the brightness has to produce any strage effects. I have a 24bit display and, for example, turning the bightness down on a truecolour image in GIMP would surely not produce strange effects like this. -- fadeout effect on displaying the logout dialog box looks

[Bug 39371] fadeout effect on displaying the logout dialog box looks bad

2006-04-12 Thread Ryan Lortie
Public bug reported: Affects: gnome-panel (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: on certain backgrounds the fadeout effect on the logout dialog box looks really bad. it doesn't fade some colours properly. i'm using the Stars

[Bug 38800] Re: avidemux crashes on a certain avi file

2006-04-10 Thread Ryan Lortie
Patch has been accepted upstream along with a few related fixes. -- avidemux crashes on a certain avi file https://launchpad.net/malone/bugs/38800 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 38800] avidemux crashes on a certain avi file

2006-04-08 Thread Ryan Lortie
Public bug reported: Affects: gst-plugins-good0.10 (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: this upstream bug affects ubuntu. http://bugzilla.gnome.org/show_bug.cgi?id=337749 ** Bug watch added: AbiSource bug tracker #337749

[Bug 38800] Re: avidemux crashes on a certain avi file

2006-04-08 Thread Ryan Lortie
** Attachment added: this is a small patch that fixes the problem for me http://librarian.launchpad.net/1985933/fixer.patch -- avidemux crashes on a certain avi file https://launchpad.net/malone/bugs/38800 -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

[Bug 36598] firewire dvd burner fails to coldplug into hal

2006-03-25 Thread Ryan Lortie
Public bug reported: https://launchpad.net/malone/bugs/36598 Affects: hal (Ubuntu) Severity: Normal Priority: (none set) Status: Unconfirmed Description: If I boot my computer with my DVD drive plugged in then HAL fails to show it in the device list. I get some sort of a

[Bug 36598] firewire dvd burner fails to coldplug into hal

2006-03-25 Thread Ryan Lortie
Public bug report changed: https://launchpad.net/malone/bugs/36598 Task: ubuntu hal Status: Unconfirmed = Fix Released Comment: Just rebooted with the latest version -- seems to be fixed, k thx. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com

  1   2   >