[Bug 404837] Re: alacarte crashed with IOError in save()

2010-03-07 Thread AdminRooT
I wasn't able to open it...When I try it just crashed...

-- 
alacarte crashed with IOError in save()
https://bugs.launchpad.net/bugs/404837
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to alacarte in ubuntu.

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


[Bug 515280] Re: Taking the square root of the square root of negative one freezes^^-1

2010-03-07 Thread Merritt Townsend
** Summary changed:

- Taking the square root of the square root of negative one freezes
+ Taking the square root of the square root of negative one freezes^^-1

-- 
Taking the square root of the square root of negative one freezes^^-1
https://bugs.launchpad.net/bugs/515280
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 533688] [NEW] The GDM icons are barely visible with the new Light theme

2010-03-07 Thread Scott Shields
*** This bug is a duplicate of bug 532844 ***
https://bugs.launchpad.net/bugs/532844

Public bug reported:

Binary package hint: gdm

The icons for Ubuntu CoF, Universal Access Options, and Shutdown Options
are barely visible with the new Light theme. This is not only eye
straining, but is also a big accessibility issue.

See attached screenshot.

ProblemType: Bug
Architecture: amd64
Date: Sun Mar  7 02:11:09 2010
DistroRelease: Ubuntu 10.04
EcryptfsInUse: Yes
InstallationMedia: Error: [Errno 13] Permission denied: 
'/var/log/installer/media-info'
Package: gdm 2.29.6-0ubuntu7
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: gdm
Uname: Linux 2.6.32-15-generic x86_64

** Affects: gdm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
The GDM icons are barely visible with the new Light theme
https://bugs.launchpad.net/bugs/533688
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533688] Re: The GDM icons are barely visible with the new theme

2010-03-07 Thread Scott Shields
*** This bug is a duplicate of bug 532844 ***
https://bugs.launchpad.net/bugs/532844


** Attachment added: Screenshot
   http://launchpadlibrarian.net/40400530/Screenshot.png

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40400053/Dependencies.txt

** Summary changed:

- The GDM icons are barely visible with the new theme
+ The GDM icons are barely visible with the new Light theme

-- 
The GDM icons are barely visible with the new Light theme
https://bugs.launchpad.net/bugs/533688
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533688] Re: The GDM icons are barely visible with the new Light theme

2010-03-07 Thread guigui14100
*** This bug is a duplicate of bug 532844 ***
https://bugs.launchpad.net/bugs/532844

** This bug has been marked a duplicate of bug 532844
   Lucid: White symbols on light panel are difficult to see

-- 
The GDM icons are barely visible with the new Light theme
https://bugs.launchpad.net/bugs/533688
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 532844] Re: Lucid: White symbols on light panel are difficult to see

2010-03-07 Thread guigui14100

** Attachment added: Attachement of the duplicate bug
   http://launchpadlibrarian.net/40400907/Screenshot.png

-- 
Lucid: White symbols on light panel are difficult to see
https://bugs.launchpad.net/bugs/532844
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 532844] Re: Lucid: White symbols on light panel are difficult to see

2010-03-07 Thread guigui14100
The theme does not change if we use Radiance or Ambiance

I confirm for the icons

** Also affects: light-themes (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Lucid: White symbols on light panel are difficult to see
https://bugs.launchpad.net/bugs/532844
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 510525] Re: Network error

2010-03-07 Thread Sven Bendel
Great, now it works like a charm! Thanks!

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

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


[Bug 533694] [NEW] Wnck fails to report correct workspace number. Urgent!

2010-03-07 Thread moma
Public bug reported:

Hello,
Using python-wnck to report and set the workspace/desktop number.

I have the following Python code. It first sets the current
desktop/workspace (in the loop) and then tries to report the desktop
number.

The print actual=, actual
statement prints always the first desktop (eg. 0), It does not change. 
IT DOES NOT OBEY THE  ws.activate(timestamp) command. 

Note: you must test this with Metacity Window Manager. It will not work with 
Compiz. Run 
$ metacity --replace 

# The code:
import gtk, gobject, wnck
import time

class Cambiatore(object):
def __init__(self):
self.screen= wnck.screen_get_default()

def cambia(self, next_ws):
ws = self.screen.get_workspaces()[next_ws]
timestamp = int(time.time())
ws.activate(timestamp)

ws = self.screen.get_active_workspace()
actual = self.screen.get_workspace_index(ws)
print actual=, actual

gtk.main_quit()

c = Cambiatore()

# Supposing you have at least 4 virtual desktops. Loop'em.
for i in range(4):
gobject.idle_add(c.cambia, i)
gtk.main()

And why does it need this evet-loop thing ?
DEEPLY COONFUUSING !

ProblemType: Bug
Architecture: amd64
Date: Sun Mar  7 09:39:07 2010
DistroRelease: Ubuntu 9.10
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release Candidate amd64 
(20091020.3)
NonfreeKernelModules: nvidia
Package: python-wnck 2.28.0-0ubuntu1
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-20.57-generic
SourcePackage: gnome-python-desktop
Uname: Linux 2.6.31-20-generic x86_64

** Affects: gnome-python-desktop (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
Wnck fails to report correct workspace number. Urgent!
https://bugs.launchpad.net/bugs/533694
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-python-desktop in ubuntu.

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


[Bug 533694] Re: Wnck fails to report correct workspace number. Urgent!

2010-03-07 Thread moma

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40401224/Dependencies.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/40401225/XsessionErrors.txt

-- 
Wnck fails to report correct workspace number. Urgent!
https://bugs.launchpad.net/bugs/533694
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-python-desktop in ubuntu.

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


[Bug 300777] Re: cut and paste of link alters permissions of linked file.

2010-03-07 Thread arand
*** This bug is a duplicate of bug 418135 ***
https://bugs.launchpad.net/bugs/418135

This looks like a duplicate of Bug #418135, which has been fixed.
If not, feel free to re-open.

** This bug has been marked a duplicate of bug 418135
   Permissions of symlinked source file/folder set to 777 if symlink is copied 
via nautilus

-- 
cut and paste of link alters permissions of linked file.
https://bugs.launchpad.net/bugs/300777
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 525161] Re: sometimes it's never print out any page and hangs on

2010-03-07 Thread madbiologist
I tested printing the attached djvu file again on Ubuntu 10.04 Lucid
Lynx alpha 3, with evince 2.29.91-0ubuntu1, and updated to the latest
versions of poppler (0.12.4-0ubuntu1) and libcairo2 (1.8.10-2ubuntu1).

The results were identical except that the document eventually printed
after 5 hours.  I'm leaving the bug confirmed as nobody wants to wait 5
hours to print a document, and nor should they be expected to.
Something is definitely wrong somewhere - this is almost as bad as the
document not printing at all.

-- 
sometimes it's never print out any page and hangs on
https://bugs.launchpad.net/bugs/525161
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 417103] Re: nautilus crash when opening trash, network or computer

2010-03-07 Thread c...@webcetera.de
Hve the same problem:
(nautilus:8432): GLib-GIO-CRITICAL **: g_file_info_get_name: assertion 
`G_IS_FILE_INFO (info)' failed

** (nautilus:8432): WARNING **: Got GFileInfo with NULL name in
network:///, ignoring. This shouldn't happen unless the gvfs backend is
broken.


(nautilus:8432): GLib-GObject-CRITICAL **: g_object_unref: assertion 
`G_IS_OBJECT (object)' failed
Segmentation fault

-- 
nautilus crash when opening trash, network or computer
https://bugs.launchpad.net/bugs/417103
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 532754] Re: gnome-appearance does not reflect order of metacity buttons correctly

2010-03-07 Thread Bernhard
Dave: the move of the metacity buttons is not a bug but rather a design
decision by the Ubuntu team. Change it back with instructions from here:
http://www.everyjoe.com/newlinuxuser/move-your-metacity-buttons-in-
gnome/

What I described here is a real bug though imho.

-- 
gnome-appearance does not reflect order of metacity buttons correctly
https://bugs.launchpad.net/bugs/532754
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

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


[Bug 533492] Re: Workspace switcher preferences box cuts text off in Lucid.

2010-03-07 Thread issyl0
OK, I'll install some updates and see if that makes a difference.  I am
using the most recent Lucid alpha.  Thanks!

-- 
Workspace switcher preferences box cuts text off in Lucid.
https://bugs.launchpad.net/bugs/533492
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to libwnck in ubuntu.

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


[Bug 483531] Re: guides don't work and selection trouble

2010-03-07 Thread dreamsare4living
I did just download and burn Ubuntu Lucid Alpha 3 and tested GIMP 2.6.8.
The only thing I can say is that the problem has magically disappeared!
I can now use the guides with both my mouse and Wacom Bamboo tablet
without GIMP acting weird. In Karmic the problem is still there. I can't
wait until april 29th.

-- 
guides don't work and selection trouble
https://bugs.launchpad.net/bugs/483531
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gimp in ubuntu.

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


[Bug 533713] [NEW] Missing plugin: gstreamer |0.10|totem|Décodeur private/teletext|decod er-private/teletext (Décodeur private/teletext)

2010-03-07 Thread FrenchNux
Public bug reported:

When i try to read video with teletext streaming, i have got isssue! it seems
 plugin missing

/var/lib/python-support/python2.6/gdata/tlslite/utils/cryptomath.py:9:
DeprecationWarning: the sha module is deprecated; use the hashlib module
instead
  import sha
** Message: don't know how to handle private/teletext
** Message: Missing plugin: gstreamer|0.10|totem|Décodeur
private/teletext|decoder-private/teletext (Décodeur private/teletext)
** Message: don't know how to handle private/x-dvbsub
** Message: don't know how to handle private/x-dvbsub

** Affects: gstreamer0.10 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Missing plugin: gstreamer|0.10|totem|Décodeur 
private/teletext|decoder-private/teletext (Décodeur private/teletext)
https://bugs.launchpad.net/bugs/533713
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gstreamer0.10 in ubuntu.

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

[Bug 533713] Re: Missing plugin: gstreamer|0 .10|totem|Décodeur private/teletext|decoder-p rivate/teletext (Décodeur private/teletext)

2010-03-07 Thread FrenchNux

** Attachment added: totem-debug.txt
   http://launchpadlibrarian.net/40404360/totem-debug.txt

-- 
Missing plugin: gstreamer|0.10|totem|Décodeur 
private/teletext|decoder-private/teletext (Décodeur private/teletext)
https://bugs.launchpad.net/bugs/533713
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gstreamer0.10 in ubuntu.

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

[Bug 532947] Re: empathy crash when show Information with a URL

2010-03-07 Thread Omer Akram
did not hang for me if the user had only web link as status message. If
the status message contains some text and the weblink then empathy
hangs. I have sent this upstream

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

** Also affects: empathy via
   https://bugzilla.gnome.org/show_bug.cgi?id=612066
   Importance: Unknown
   Status: Unknown

** Changed in: empathy (Ubuntu)
   Status: Incomplete = Triaged

-- 
empathy crash when show Information with a URL
https://bugs.launchpad.net/bugs/532947
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 532947] Re: empathy crash when show Information with a URL

2010-03-07 Thread Rus F Adrian
this is another screenshot following the steps


** Attachment added: pic3.png
   http://launchpadlibrarian.net/40404650/pic3.png

-- 
empathy crash when show Information with a URL
https://bugs.launchpad.net/bugs/532947
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 532947] Re: empathy crash when show Information with a URL

2010-03-07 Thread Omer Akram
** Changed in: empathy (Ubuntu)
   Importance: Low = Medium

-- 
empathy crash when show Information with a URL
https://bugs.launchpad.net/bugs/532947
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 532947] Re: empathy crash when show Information with a URL

2010-03-07 Thread Rus F Adrian
Omer Akram so i realise when freeze and not with an URL :'

*  http://ubuntu.com Ubuntu -- not freeze works
*  Ubuntu http://ubuntu.com; -- freeze

Try put on your status and to confirme

-- 
empathy crash when show Information with a URL
https://bugs.launchpad.net/bugs/532947
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 533720] [NEW] Have to go through login twice to work

2010-03-07 Thread Paul Hoell
Public bug reported:

Binary package hint: gdm

On every boot, when i come to gdm and try to login it shows me a black screen, 
some artefacts and then i'm back in gdm.
I then enter my password again and this time i can enter gnome.
This happens every time i boot the machine which is an up-to-date lucid 64bit 
upgraded from karmic.

ProblemType: Bug
Architecture: amd64
Date: Sun Mar  7 11:10:11 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
NonfreeKernelModules: nvidia
Package: gdm 2.29.6-0ubuntu7
ProcEnviron:
 PATH=(custom, user)
 LANG=de_AT.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: gdm
Uname: Linux 2.6.32-15-generic x86_64

** Affects: gdm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
Have to go through login twice to work
https://bugs.launchpad.net/bugs/533720
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533720] Re: Have to go through login twice to work

2010-03-07 Thread Paul Hoell

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40405274/Dependencies.txt

-- 
Have to go through login twice to work
https://bugs.launchpad.net/bugs/533720
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 532947] Re: empathy crash when show Information with a URL

2010-03-07 Thread Rus F Adrian
apport information

** Tags added: apport-collected

** Description changed:

  Binary package hint: empathy
  
  1)
  lsb_release -rd
  Description:  Ubuntu lucid (development branch)
  Release:  10.04
  2)
  apt-cache policy empathy
  empathy:
Installed: 2.29.91.2-0ubuntu1
Candidate: 2.29.91.2-0ubuntu1
Version table:
   *** 2.29.91.2-0ubuntu1 0
  500 http://archive.ubuntu.com lucid/main Packages
  100 /var/lib/dpkg/status
  3) Expected to show Information (status) of a username with a URL
  4) Instead frooze and ask Metacity to Force Quit only if is an URL in that 
status else works.
+ --- 
+ Architecture: i386
+ DistroRelease: Ubuntu 10.04
+ InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100305)
+ Package: empathy 2.29.91.2-0ubuntu1
+ PackageArchitecture: i386
+ ProcEnviron:
+  LANG=en_US.utf8
+  SHELL=/bin/bash
+ ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
+ Tags: lucid
+ Uname: Linux 2.6.32-15-generic i686
+ UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40405563/Dependencies.txt

-- 
empathy crash when show Information with a URL
https://bugs.launchpad.net/bugs/532947
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 136358] Re: VLC 0.8.6c does not save playlist on Gutsy

2010-03-07 Thread Rémi Denis-Courmont
I am not sure which package contains the buggy GTK theme for Qt4, but
this is not VLC.

** Also affects: gtk+2.0 (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- VLC 0.8.6c does not save playlist on Gutsy 
+ VLC does not save playlist with GTK theme

** Changed in: vlc (Ubuntu)
   Status: New = Invalid

-- 
VLC does not save playlist with GTK theme
https://bugs.launchpad.net/bugs/136358
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in ubuntu.

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


[Bug 436558] Re: no sound at all!

2010-03-07 Thread krissh999
I'm very new to Ubuntu and this website


i think i got the same problem as you


can you please tell me how to fix the sound?

-- 
no sound at all!
https://bugs.launchpad.net/bugs/436558
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst0.10-python in ubuntu.

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


[Bug 533733] [NEW] Lucid login screen, bottom bar items overlapping on 800x480 screen

2010-03-07 Thread Steven Harper
Public bug reported:

Binary package hint: gdm

On smaller netbook screens (eeepc 4G) where the max resolution is
800x480, the GDM greeter looks good, until you select a user,   then the
bottom row of items overlap each other and look messy and unreadable.

Maybe we can use the resolution to choose which items to put in the bar,
or display them differently.

** Affects: gdm (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Lucid login screen, bottom bar items overlapping on 800x480 screen
https://bugs.launchpad.net/bugs/533733
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533735] [NEW] metacity minimize effect

2010-03-07 Thread Pako
Public bug reported:

Binary package hint: metacity

animated effect in metacity, neither looks nor behaves like it should,
it looks more like a failure than the animation, it is not even changed
since GNOME 2.22. So I decided to change few settings in gconf-editor
and I get so much faster and smother environment. Here's what I did.

open gconf-editor
1. apps/panel/global/enable_animations (unchecked)
2. apps/metacity/general/reduced_resources (checked)
3. apps/metacity/general/compositing_manager (checked)

** Affects: metacity (Ubuntu)
 Importance: Undecided
 Status: New

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

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


[Bug 531556] Re: [Lucid] Blank Screen after login

2010-03-07 Thread Steven Harper
I have the same behavior on my asus eeepc 4G on a clean netbook remix
install  of Alpha 5.

I believe it is a race condition, as once it has not happened, maybe the
speed of the SSD disk is highlighting this bug.

When  I have the blank screen (with just a promt in the top corner) I
hit the RETURN key and the greeter then re-ppears.

** Attachment added: info.txt
   http://launchpadlibrarian.net/40408353/info.txt

-- 
[Lucid] Blank Screen after login
https://bugs.launchpad.net/bugs/531556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 520008] Re: Rhythmbox crashes on changing the output volume- Ubuntu 9.10

2010-03-07 Thread Mehrdad Moradi
** Changed in: rhythmbox (Ubuntu)
   Status: Invalid = Incomplete

-- 
Rhythmbox crashes on changing the output volume- Ubuntu 9.10
https://bugs.launchpad.net/bugs/520008
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 457816] Re: cannot play Quicktime media

2010-03-07 Thread Rémi Denis-Courmont
The provided URL
http://www.pbs.org/wgbh/nova/elegant/media2/nova_eu_3012c01_caps.mov
contains only subtitles - no video and no audio.

http://www.pbs.org/wgbh/nova/elegant/media2/eu.mov would be a better
one. It contains a reference to a working URL:
http://www.pbs.org/wgbh/nova/elegant/media2/nova_eu_3012c01_ref.mov
(working in native VLC anyway)

** Changed in: vlc (Ubuntu)
   Status: New = Confirmed

** Bug watch added: VLC Trac #3390
   http://trac.videolan.org/vlc/ticket/3390

** Also affects: vlc via
   http://trac.videolan.org/vlc/ticket/3390
   Importance: Unknown
   Status: Unknown

-- 
cannot play Quicktime media
https://bugs.launchpad.net/bugs/457816
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

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


[Bug 533735] Re: metacity minimize effect

2010-03-07 Thread Pako
** Description changed:

  Binary package hint: metacity
  
  animated effect in metacity, neither looks nor behaves like it should,
  it looks more like a failure than the animation, it is not even changed
  since GNOME 2.22. So I decided to change few settings in gconf-editor
- and I get so much faster and smother environment. Here's what I did.
+ and I get so much faster and smooth environment. Here's what I did.
  
  open gconf-editor
  1. apps/panel/global/enable_animations (unchecked)
  2. apps/metacity/general/reduced_resources (checked)
  3. apps/metacity/general/compositing_manager (checked)

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

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


[Bug 530055] Re: when maximised, title bar inteferes with other applications

2010-03-07 Thread Kelvinelk
steps to reproduce:

1. start gnome-terminal
2. maximize window
3. ssh in to another box
4. start thunderbird
4. click x in thunderbird

cheers

-- 
when maximised, title bar inteferes with other applications
https://bugs.launchpad.net/bugs/530055
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 531556] Re: [Lucid] Blank Screen after login

2010-03-07 Thread Petr Tomeš
I can confirm on both netbooks that the bug is not presented in Karmic
Koala and this is something, where fix should definitely be released
before beta of LTS.

-- 
[Lucid] Blank Screen after login
https://bugs.launchpad.net/bugs/531556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 520685] Re: Opening Computer with nautilus fails 1st time after login when using Extra Pane view (A.K.A split view mode)

2010-03-07 Thread Vish
** Tags added: patch

-- 
Opening Computer with nautilus fails 1st time after login when using Extra 
Pane view (A.K.A split view mode)
https://bugs.launchpad.net/bugs/520685
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus in ubuntu.

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


[Bug 520008] Re: Rhythmbox crashes on changing the output volume- Ubuntu 9.10

2010-03-07 Thread Mehrdad Moradi
As BelleEsprit also confirms, there are no crash reports at all, that is the 
crash reports which are generated automatically when some apps crash.
All I could find was two lines in the messages log file(var/log) which seemed 
quite related to the problem on hand.Here they are:

{ Feb 28 18:12:17 mehrdad-desktop kernel: [ 7650.856088] rhythmbox[3173]: 
segfault at 0 ip (null) sp ad5f71bc error 14 in rhythmbox[8048000+6000]
Feb 28 18:14:12 mehrdad-desktop pulseaudio[1931]: ratelimit.c: 117 events 
suppressed}

Is that the sort of info you would regard as useful?

** Tags added: rhythmbox

-- 
Rhythmbox crashes on changing the output volume- Ubuntu 9.10
https://bugs.launchpad.net/bugs/520008
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533652] Re: critically low battery dialog cancel button is meaningless

2010-03-07 Thread Chris Coulson
Hmmm, I thought I'd reverted this upstream change already

** Changed in: gnome-power-manager (Ubuntu)
   Importance: Undecided = Medium

** Changed in: gnome-power-manager (Ubuntu)
   Status: New = Triaged

** Changed in: gnome-power-manager (Ubuntu)
 Assignee: (unassigned) = Chris Coulson (chrisccoulson)

-- 
critically low battery dialog cancel button is meaningless
https://bugs.launchpad.net/bugs/533652
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

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


[Bug 533652] Re: critically low battery dialog cancel button is meaningless

2010-03-07 Thread Chris Coulson
This is Ubuntu specific by the way. notify-osd shows this notification
as a fallback alert because it uses a non-expiring message

-- 
critically low battery dialog cancel button is meaningless
https://bugs.launchpad.net/bugs/533652
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu.

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


[Bug 525535] Re: Two unrelated Podcast entries get mixed into one

2010-03-07 Thread Angel Abad
In bugzilla.gnome.org Jonathan Matthew says:

Without some concrete steps to reproduce this problem, I don't think we're
going to be able to figure it out.

-- 
Two unrelated Podcast entries get mixed into one
https://bugs.launchpad.net/bugs/525535
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 433654] Re: [Karmic][Lucid] Only one user has sound; no hw shows in Sound Preferences

2010-03-07 Thread Chris Coulson
** Changed in: gnome-system-tools (Ubuntu)
   Importance: Undecided = Medium

** Changed in: gnome-system-tools (Ubuntu)
 Assignee: (unassigned) = Chris Coulson (chrisccoulson)

** Changed in: gnome-system-tools (Ubuntu)
   Status: Confirmed = In Progress

-- 
[Karmic][Lucid] Only one user has sound; no hw shows in Sound Preferences
https://bugs.launchpad.net/bugs/433654
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu.

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


[Bug 533749] [NEW] gthumb 2.11.1 crashes on slideshow

2010-03-07 Thread ®om
Public bug reported:

Binary package hint: gthumb

gthumb 2.11.1 on ubuntu 10.04 lucid lynx alpha crashes every time I
click on slideshow.

Gdk-ERROR **: The program 'gthumb' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadAccess (attempt to access private resource denied)'.
  (Details: serial 48 error_code 10 request_code 2 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
aborting...


I don't know where to pass --sync on command line, it is not gthumb --sync…

ProblemType: Bug
Architecture: i386
Date: Sun Mar  7 12:39:38 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100224.1)
Package: gthumb 3:2.11.1-2ubuntu1
ProcEnviron:
 LANG=fr_FR.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: gthumb
Uname: Linux 2.6.32-15-generic i686

** Affects: gthumb (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
gthumb 2.11.1 crashes on slideshow
https://bugs.launchpad.net/bugs/533749
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gthumb in ubuntu.

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

[Bug 533749] Re: gthumb 2.11.1 crashes on slideshow

2010-03-07 Thread ®om

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40410168/Dependencies.txt

-- 
gthumb 2.11.1 crashes on slideshow
https://bugs.launchpad.net/bugs/533749
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gthumb in ubuntu.

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


[Bug 533748] [NEW] cover something doesn't work

2010-03-07 Thread Yunkwan
Public bug reported:

Binary package hint: rhythmbox

OS: lucid i386 latest

I'm happy that rhythmbox can finally read the cover that embed in my
itune musics(so there's no jpg or png files in the music folder). If I
double click the next song or I click the next button to switch to
another song, the lower-left of side panel will correctly show the
cover. If I let the song finish and jump to another song, then the cover
will not be shown. This happens even in the same album. So, the covers
will only be shown went I manually choose a song.

ProblemType: Bug
Architecture: i386
Date: Sun Mar  7 19:27:06 2010
DistroRelease: Ubuntu 10.04
ExecutablePath: /usr/bin/rhythmbox
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100304)
Package: rhythmbox 0.12.7-0ubuntu4
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: rhythmbox
Uname: Linux 2.6.32-15-generic i686

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
cover something doesn't work
https://bugs.launchpad.net/bugs/533748
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533748] Re: cover something doesn't work

2010-03-07 Thread Yunkwan

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40409601/Dependencies.txt

** Attachment added: GConfNonDefault.txt
   http://launchpadlibrarian.net/40409602/GConfNonDefault.txt

** Attachment added: GstreamerVersions.txt
   http://launchpadlibrarian.net/40409603/GstreamerVersions.txt

** Attachment added: LogAlsaMixer.txt
   http://launchpadlibrarian.net/40409604/LogAlsaMixer.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/40409605/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/40409606/ProcStatus.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/40409607/XorgLog.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/40409608/XsessionErrors.txt

-- 
cover something doesn't work
https://bugs.launchpad.net/bugs/533748
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 508336] Re: files on 'fat32' fs cannot be moved to trash

2010-03-07 Thread Angel Abad
** Also affects: glib2.0 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: glib via
   https://bugzilla.gnome.org/show_bug.cgi?id=611607
   Importance: Unknown
   Status: Unknown

-- 
files on 'fat32' fs cannot be moved to trash
https://bugs.launchpad.net/bugs/508336
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to glib2.0 in ubuntu.

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


[Bug 526041] Re: gnome-power-manager crashes all 5-10 minutes again

2010-03-07 Thread Konstantin Lavrov
Here is the output of dbus-monitor with signal that is arrised when
battery indicator applet is flickering:

signal sender=:1.0 - dest=(null destination) serial=149 
path=/org/ayatana/NotificationItem/gnome_power_manager/Menu; 
interface=org.ayatana.dbusmenu; member=LayoutUpdated
   uint32 67
   int32 0
signal sender=:1.0 - dest=(null destination) serial=151 
path=/org/ayatana/NotificationItem/gnome_power_manager/Menu; 
interface=org.ayatana.dbusmenu; member=LayoutUpdated
   uint32 68
   int32 0

-- 
gnome-power-manager crashes all 5-10 minutes again 
https://bugs.launchpad.net/bugs/526041
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


Re: [Bug 520008] Re: Rhythmbox crashes on changing the output volume- Ubuntu 9.10

2010-03-07 Thread BelleEsprit
May be it's helpful to the developer but I can't get anything out
there...


On Sun, Mar 7, 2010 at 3:19 AM, Mehrdad Moradi
mehrdadmoradi...@yahoo.comwrote:

 As BelleEsprit also confirms, there are no crash reports at all, that is
 the crash reports which are generated automatically when some apps crash.
 All I could find was two lines in the messages log file(var/log) which
 seemed quite related to the problem on hand.Here they are:

 { Feb 28 18:12:17 mehrdad-desktop kernel: [ 7650.856088] rhythmbox[3173]:
 segfault at 0 ip (null) sp ad5f71bc error 14 in rhythmbox[8048000+6000]
 Feb 28 18:14:12 mehrdad-desktop pulseaudio[1931]: ratelimit.c: 117 events
 suppressed}

 Is that the sort of info you would regard as useful?

 ** Tags added: rhythmbox

 --
 Rhythmbox crashes on changing the output volume- Ubuntu 9.10
 https://bugs.launchpad.net/bugs/520008
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “rhythmbox” package in Ubuntu: Incomplete

 Bug description:
 Binary package hint: rhythmbox

 It happens randomly, so I can't provide much info on this bug now.
 But one thing I can tell for sure is that Rhythmbox almost always crashes
 when I move the volume slider at the lower half and only by mouse.

 Rhythmbox 0.12.5

 ProblemType: Bug
 Architecture: i386
 Date: Wed Feb 10 20:41:00 2010
 DistroRelease: Ubuntu 9.10
 ExecutablePath: /usr/bin/rhythmbox
 InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.2)
 Package: rhythmbox 0.12.5-0ubuntu5.2
 ProcEnviron:
  LANG=en_US.UTF-8
  SHELL=/bin/bash
 ProcVersionSignature: Ubuntu 2.6.31-14.48-generic-pae
 SourcePackage: rhythmbox
 Uname: Linux 2.6.31-14-generic-pae i686

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/520008/+subscribe


-- 
Rhythmbox crashes on changing the output volume- Ubuntu 9.10
https://bugs.launchpad.net/bugs/520008
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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

[Bug 533751] [NEW] gthumb 2.11.1 crashes when switching using the mouse scroll

2010-03-07 Thread ®om
Public bug reported:

Binary package hint: gthumb

If I am in fullscreen mode, I can switch photos using previous and
next button.

But if I use the mouse scroll to change, it crashes :

(gthumb:1809): GLib-GObject-CRITICAL **: g_value_get_pointer: assertion 
`G_VALUE_HOLDS_POINTER (value)' failed
Segmentation fault (core dumped)

ProblemType: Bug
Architecture: i386
Date: Sun Mar  7 12:45:49 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100224.1)
Package: gthumb 3:2.11.1-2ubuntu1
ProcEnviron:
 LANG=fr_FR.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: gthumb
Uname: Linux 2.6.32-15-generic i686

** Affects: gthumb (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
gthumb 2.11.1 crashes when switching using the mouse scroll
https://bugs.launchpad.net/bugs/533751
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gthumb in ubuntu.

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


[Bug 533751] Re: gthumb 2.11.1 crashes when switching using the mouse scroll in fullscreen

2010-03-07 Thread ®om

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40410403/Dependencies.txt

-- 
gthumb 2.11.1 crashes when switching using the mouse scroll
https://bugs.launchpad.net/bugs/533751
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gthumb in ubuntu.

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


[Bug 533751] Re: gthumb 2.11.1 crashes when switching using the mouse scroll in fullscreen

2010-03-07 Thread ®om
Even in non fullscreen mode…

** Summary changed:

- gthumb 2.11.1 crashes when switching using the mouse scroll in fullscreen
+ gthumb 2.11.1 crashes when switching using the mouse scroll

-- 
gthumb 2.11.1 crashes when switching using the mouse scroll
https://bugs.launchpad.net/bugs/533751
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gthumb in ubuntu.

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

[Bug 457816] Re: cannot play Quicktime media

2010-03-07 Thread Bug Watch Updater
** Changed in: vlc
   Status: Unknown = New

-- 
cannot play Quicktime media
https://bugs.launchpad.net/bugs/457816
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

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


[Bug 533758] [NEW] Button order/position should be part of Theme

2010-03-07 Thread Dave Gilbert
Public bug reported:

Binary package hint: metacity

Given the change of default button layout in Lucid, I feel that this
should be part of theme rather a part of a separate gconf entity.

(I realise that might be a contentious request - but note I'm not asking
to undo the new default button layout, just to associate it with the new
themes rather than laying it down whatever theme people have).

I'm referencing this from https://bugs.launchpad.net/ubuntu/+source
/gnome-control-center/+bug/532754  which is the fact that the appearance
dialog doesn't match the new reality.

Dave

** Affects: metacity (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Button order/position should be part of Theme
https://bugs.launchpad.net/bugs/533758
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to metacity in ubuntu.

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


Re: [Bug 507902] Re: Rhytmbox plays another radio station

2010-03-07 Thread Jakub Flaska
Dear Nigel,

this problem appears regardless which radio stations are in list.
The problem is that the first one in list plays instead of which I selected
immediately after Rhythmbox run.
It doesn't matter which radio station is actually on first place or which I
clicked.

I am sorry but I cannot test development version of Ubuntu due to lack of
time.

Jakub Flaska


2010/2/26 Nigel Babu nigelb...@gmail.com

 Thank you for taking the time to report this bug and helping to make
 Ubuntu better. We are sorry that we do not always have the capacity to
 look at all reported bugs in a timely manner. There have been many
 changes in Ubuntu since that time you reported the bug and your problem
 may have been fixed with some of the updates.

 Is this issue only with this particular radio station or all the radio
 stations in the list?

 If you could test the current Ubuntu development version, this would
 help us a lot. If you can test it, and it is still an issue, we would
 appreciate if you could upload updated logs relevant for this particular
 issue.

 --
 Rhytmbox plays another radio station
 https://bugs.launchpad.net/bugs/507902
 You received this bug notification because you are a direct subscriber
 of the bug.

 Status in “rhythmbox” package in Ubuntu: Incomplete

 Bug description:
 Binary package hint: rhythmbox

 Ubuntu 9.10
 Rhythmbox 0.12.5-0ubuntu5.1

 First selected radio station (in session) doesn't play,

 instead of it plays some other radio station.

 ProblemType: Bug
 Architecture: i386
 Date: Fri Jan 15 13:41:40 2010
 DistroRelease: Ubuntu 9.10
 ExecutablePath: /usr/bin/rhythmbox
 InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
 NonfreeKernelModules: nvidia
 Package: rhythmbox 0.12.5-0ubuntu5.1
 ProcEnviron:
  LANG=en_US.UTF-8
  SHELL=/bin/bash
 ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
 SourcePackage: rhythmbox
 Uname: Linux 2.6.31-17-generic i686
 XsessionErrors:
  (gnome-settings-daemon:1941): GLib-CRITICAL **: g_propagate_error:
 assertion `src != NULL' failed
  (gnome-settings-daemon:1941): GLib-CRITICAL **: g_propagate_error:
 assertion `src != NULL' failed
  (polkit-gnome-authentication-agent-1:1981): GLib-CRITICAL **:
 g_once_init_leave: assertion `initialization_value != 0' failed
  (nautilus:1974): Eel-CRITICAL **: eel_preferences_get_boolean: assertion
 `preferences_is_initialized ()' failed
  (gnome-panel:1970): Gdk-WARNING **:
 /build/buildd/gtk+2.0-2.18.3/gdk/x11/gdkdrawable-x11.c:952 drawable is not a
 pixmap or window

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/rhythmbox/+bug/507902/+subscribe


-- 
Rhytmbox plays another radio station
https://bugs.launchpad.net/bugs/507902
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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

[Bug 433654] Re: [Karmic][Lucid] Only one user has sound; no hw shows in Sound Preferences

2010-03-07 Thread Launchpad Bug Tracker
This bug was fixed in the package gnome-system-tools - 2.29.91-0ubuntu2

---
gnome-system-tools (2.29.91-0ubuntu2) lucid; urgency=low

  * debian/patches/26_user_profiles_conf.patch:
- Don't add users to the audio group. This is consistent with
  user-setup and fixes an issue with sound device permissions when
  switching between users. Thanks to Igor Wojnicki for spotting
  this (LP: #433654)
 -- Chris Coulson chris.coul...@canonical.com   Sun, 07 Mar 2010 11:56:59 
+

** Branch linked: lp:~ubuntu-desktop/gnome-system-tools/ubuntu

** Changed in: gnome-system-tools (Ubuntu)
   Status: In Progress = Fix Released

-- 
[Karmic][Lucid] Only one user has sound; no hw shows in Sound Preferences
https://bugs.launchpad.net/bugs/433654
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu.

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


[Bug 533751] Re: gthumb 2.11.1 crashes when switching using the mouse scroll

2010-03-07 Thread Michael Chudobiak
Fixed in the 2.11.2 release.

- Mike

-- 
gthumb 2.11.1 crashes when switching using the mouse scroll
https://bugs.launchpad.net/bugs/533751
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gthumb in ubuntu.

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


[Bug 532754] Re: gnome-appearance does not reflect order of metacity buttons correctly

2010-03-07 Thread Dave Gilbert
OK, so I've created

https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/533758

which requests that the button position is part of the theme.
As I see it moving it to the theme still lets the new design decision stick to 
the new themes
it just makes it easier for people to put it back if they don't like the new 
design.

Given the description I agree your bug is real as well,

Dave

-- 
gnome-appearance does not reflect order of metacity buttons correctly
https://bugs.launchpad.net/bugs/532754
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

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


[Bug 414107] Re: Palimpsest GUI impossible to use on small screen

2010-03-07 Thread Jo-Erlend Schinstad
I'm having a similar issue on a 1366x768 screen. The lower part of the
window falls outside the screen, and when I click to close the window,
it jumps up and hides the titlebar, so I have to use keyboard shortcut
to close it. Very annoying.

-- 
Palimpsest GUI impossible to use on small screen
https://bugs.launchpad.net/bugs/414107
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in ubuntu.

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


[Bug 533602] Re: Document Viewer 2.26.1 only displays stationary of MSF receipt, not content!!! (Medicins Sans Frontiers)

2010-03-07 Thread madbiologist
Could you please try the Ubuntu 9.10 Karmic Koala Live CD or the
Ubuntu 10.04 Lucid Lynx alpha 3 Live CD and see if the problem still
exists?

If you are unable to do that, you may like to consider attaching the
problem document file to this bug report, but you should only do so if
it does not contain any private/sensitive information.

Good on you for supporting MSF.

-- 
Document Viewer 2.26.1 only displays stationary of MSF receipt, not content!!! 
(Medicins Sans Frontiers)
https://bugs.launchpad.net/bugs/533602
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 456282] Re: unknown org.freedesktop.DeviceKit.Disks name

2010-03-07 Thread Jérôme
With Xubuntu karmic up to date, I couldn't reproduce it.

I think this was related to the LXDE environment of karmic that I used
before.

-- 
unknown org.freedesktop.DeviceKit.Disks name
https://bugs.launchpad.net/bugs/456282
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in ubuntu.

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


[Bug 429579] Re: all (audio)players should have the same preset sound volume

2010-03-07 Thread Harald Sitter
Well, honestly I think this is a rather poinless change for 3 reasons:
a) Different decodes possibly can lead to different volumes (say you use Amarok 
and VLC, they use different libraries to decode the media files, so 100% might 
not be what VLC considers 100%).
b) I am no HCI specialist, but my assumption is that a regular user (that is 
someone who might not even know that app volume != system volume) will almost 
always try to change the volume in the app itself. There they got some icon and 
a slider indicating that volume can be manipulated here, which makes me believe 
that they will almost always opt for this way of changing the volume.
c) As you pointed out already. Different files have different levels, so 
without global replaygain the proposal does not make sense.

c is especially important, because everything stands and falls with this
fact. Without replaygain Rythmbox and Totem could both be using 100% by
default and yet your hearing will get blasted. On that remark I'd also
like to point out that replaygain is constantly eating resources and
thus not gonna happen by default anyway :|

-- 
all (audio)players should have the same preset sound volume
https://bugs.launchpad.net/bugs/429579
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 429579] Re: all (audio)players should have the same preset sound volume

2010-03-07 Thread Harald Sitter
KarmicLucid:
Kaffeine: 100%
Dragonplayer: 100%

Now since apparently movies aren't as loud as music (or so the claim ;))
I suppose it makes sense that Amarok comes with 80%. Also in Amarok 2.3
the volume slider is art of its own and looks way better with 80 ;)

** Changed in: kaffeine (Ubuntu)
   Status: New = Invalid

** Changed in: dragonplayer (Ubuntu)
   Status: New = Invalid

** Changed in: amarok (Ubuntu)
   Status: New = Won't Fix

-- 
all (audio)players should have the same preset sound volume
https://bugs.launchpad.net/bugs/429579
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533789] [NEW] TotemI crashes when play video

2010-03-07 Thread Lehis
Public bug reported:

Binary package hint: totem

Crashed when open video before playing video (any video)

before firefox-plugin mplayer not view video, save and view totem -
crashed

ProblemType: Bug
Architecture: i386
CheckboxSubmission: 9ca0da552898bb599e0733dd6f21282e
CheckboxSystem: edda5d4f616ca792bf437989cb597002
Date: Sun Mar  7 15:03:49 2010
DistroRelease: Ubuntu 9.10
ExecutablePath: /usr/bin/totem
NonfreeKernelModules: fglrx
Package: totem 2.28.2-0ubuntu3
ProcEnviron:
 LANG=fi_FI.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-20.57-generic
SourcePackage: totem
Uname: Linux 2.6.31-20-generic i686

** Affects: totem (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
TotemI crashes when play video
https://bugs.launchpad.net/bugs/533789
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

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


[Bug 533789] Re: TotemI crashes when play video

2010-03-07 Thread Lehis

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40415542/Dependencies.txt

** Attachment added: GstreamerVersions.txt
   http://launchpadlibrarian.net/40415543/GstreamerVersions.txt

** Attachment added: LogAlsaMixer.txt
   http://launchpadlibrarian.net/40415544/LogAlsaMixer.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/40415545/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/40415546/ProcStatus.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/40415547/XorgLog.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/40415548/XsessionErrors.txt

-- 
TotemI crashes when play video
https://bugs.launchpad.net/bugs/533789
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

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


[Bug 510196] Re: keymap indicator applet hard-coded to use black fonts

2010-03-07 Thread cosmix
** Changed in: libgnomekbd (Ubuntu)
   Status: New = Confirmed

-- 
keymap indicator applet hard-coded to use black fonts
https://bugs.launchpad.net/bugs/510196
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 533797] [NEW] SIGSEGV when playing music on a MTP device

2010-03-07 Thread Bln
Public bug reported:

Binary package hint: rhythmbox

In Ubuntu 9.10, when I play music on my MTP device (a Creative Zen V Plus (4GB) 
mp3 player) in Rythmbox, it first results into a music paused status, and 
then, when I try to resume the music, it crashes with Segmentation Fault 
signal. That's not really a problem since I still can grab the music from my 
mp3 player and then play it, but it's a bug so I report it ;)
I've placed two marks in the attached trace file (Lines 1463 and 1492) 
beginning with === to describe what happened an when. I've leaved repetitive 
errors as they happened.

Binary: Rhythmbox 0.12.5
Package: 0.12.5-0ubuntu5.2

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New

-- 
SIGSEGV when playing music on a MTP device
https://bugs.launchpad.net/bugs/533797
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533797] Re: SIGSEGV when playing music on a MTP device

2010-03-07 Thread Bln

** Attachment added: stderr of the bug
   http://launchpadlibrarian.net/40417010/trace

-- 
SIGSEGV when playing music on a MTP device
https://bugs.launchpad.net/bugs/533797
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533394] Re: Evince displays some summation symbols incorrectly in pdfs

2010-03-07 Thread madbiologist
This is fixed in Ubuntu 10.04 Lucid Lynx alpha 3, updated to the
latest Ubuntu poppler package.

See attached screenshot.

** Attachment added: Screenshot.png
   http://launchpadlibrarian.net/40416605/Screenshot.png

** Changed in: evince (Ubuntu)
   Status: New = Fix Committed

-- 
Evince displays some summation symbols incorrectly in pdfs
https://bugs.launchpad.net/bugs/533394
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 533328] Re: will not print some pdf files

2010-03-07 Thread madbiologist
Thanks for filing this bug report.

If possible, please attach the problem document to this bug report.  If
that is not possible, please consider trying to print this document from
the Ubuntu 10.04 Lucid Lynx alpha 3 Live CD and then let us know the
outcome.

-- 
will not print some pdf files
https://bugs.launchpad.net/bugs/533328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 485678] Re: package gnome-desktop-data 1:2.28.1-0ubuntu2 failed to install/upgrade: podproces dpkg-deb --control zwr?ci? kod b??du 2

2010-03-07 Thread Jean-Baptiste Lallement
Thank you for taking the time to report this bug and helping to make
Ubuntu better. It seems that there was an error caused by a corrupted
archive. Please execute the following commands, as it will clear your
package cache, in a terminal ( Applications - Accessories - Terminal )
:

sudo apt-get clean
sudo apt-get update

Then try performing the update again. This will likely resolve your
issue. If so please set the bug's status to Invalid. Thanks in advance!

** Changed in: gnome-desktop (Ubuntu)
   Status: New = Incomplete

-- 
package gnome-desktop-data 1:2.28.1-0ubuntu2 failed to install/upgrade: 
podproces dpkg-deb --control zwr?ci? kod b??du 2
https://bugs.launchpad.net/bugs/485678
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-desktop in ubuntu.

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


[Bug 444133] Re: package libpam-gnome-keyring 2.28.0-0ubuntu2 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 128

2010-03-07 Thread Jean-Baptiste Lallement
*** This bug is a duplicate of bug 442941 ***
https://bugs.launchpad.net/bugs/442941

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 442941, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Changed in: gnome-keyring (Ubuntu)
   Status: New = Confirmed

** This bug has been marked a duplicate of bug 442941
   debconf failed to upgrade from 1.5.27ubuntu1 to 1.5.27ubuntu2: exit status 
128 - Use of uninitialized value $reply in scalar chomp at 
/usr/share/perl5/Debconf/FrontEnd/Passthrough.pm line 66

-- 
package libpam-gnome-keyring 2.28.0-0ubuntu2 failed to install/upgrade: il 
sottoprocesso vecchio script di post-installation ha restituito lo stato di 
errore 128
https://bugs.launchpad.net/bugs/444133
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring in ubuntu.

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


[Bug 533802] [NEW] Workspace switcher turns into one line when adding a second monitor

2010-03-07 Thread Ricardo Bánffy
Public bug reported:

Binary package hint: gnome-panel

Under Karmic, when adding a second monitor, my workspace switcher turns
from 2x2 to 1x4. Invoking preferences shows it's still set to 2x2 and
changing them corrects the problem and restores the switcher to the set
configuration. It then can be restored to 2x2.

ProblemType: Bug
Architecture: i386
Date: Sun Mar  7 10:30:27 2010
DistroRelease: Ubuntu 9.10
Package: gnome-panel 1:2.28.0-0ubuntu6
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-17.54-generic
SourcePackage: gnome-panel
Uname: Linux 2.6.31-17-generic i686

** Affects: gnome-panel (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
Workspace switcher turns into one line when adding a second monitor
https://bugs.launchpad.net/bugs/533802
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 533802] Re: Workspace switcher turns into one line when adding a second monitor

2010-03-07 Thread Ricardo Bánffy

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40417161/Dependencies.txt

** Attachment added: GConfNonDefault.txt
   http://launchpadlibrarian.net/40417162/GConfNonDefault.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/40417163/XsessionErrors.txt

-- 
Workspace switcher turns into one line when adding a second monitor
https://bugs.launchpad.net/bugs/533802
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 499516] Re: gimp quiteinsanegimpplugin crashes on scan

2010-03-07 Thread gliptak
Ted,

I'm at a loss here what is missing from this bug report.

At a minimum, we need:
1. the specific steps or actions you took that caused you to encounter the 
problem,

gimp crashes when trying to scan with File/Scan/QuiteInsane/Scan

2. the behavior you expected, and

Behavior expected is that Gimp to be able to scan using the QuiteInsane

3. the behavior you actually encountered (in as much detail as
possible).

$ scanimage  /tmp/foo.pnm
WARNING: Unhandled message: interface=org.freedesktop.DBus.Introspectable, 
path=/, member=Introspect

(although it does throw the same warning ...)

Here is the gimp stacktrace:

$ gimp --stack-trace-mode=always
WARNING: Unhandled message: interface=org.freedesktop.DBus.Introspectable, 
path=/, member=Introspect
/usr/lib/gimp/2.0/plug-ins/quiteinsanegimpplugin: fatal error: Segmentation 
fault
#0 0x00c6a422 in __kernel_vsyscall ()
#1 0x009d5b3b in waitpid () from /lib/tls/i686/cmov/libpthread.so.0
#2 0x08e3dbf3 in g_on_error_stack_trace () from /lib/libglib-2.0.so.0
#3 0x00b37fe0 in ?? () from /usr/lib/libgimp-2.0.so.0
#4 signal handler called
#5 0x0686ca30 in strcpy () from /lib/tls/i686/cmov/libc.so.6
#6 0x04ce090b in sane_epson2_control_option ()
#7 0x00c8c34d in sane_dll_control_option () from /usr/lib/libsane.so.1
#8 0x00c8a929 in sane_control_option () from /usr/lib/libsane.so.1
#9 0x0806fde3 in ?? ()
#10 0x0807b324 in ?? ()
#11 0x0807d412 in ?? ()
#12 0x0807d5ff in ?? ()
#13 0x0807ef86 in ?? ()
#14 0x0807f970 in ?? ()
#15 0x0809f862 in ?? ()
#16 0x0809fc06 in ?? ()
#17 0x00b37c1c in gimp_main () from /usr/lib/libgimp-2.0.so.0
#18 0x0809eccd in ?? ()
#19 0x06810b56 in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6
#20 0x0805b211 in ?? ()

^C/usr/lib/gimp/2.0/plug-ins/script-fu terminated: Interrupt
gimp: terminated: Interrupt

ProblemType: Bug
Architecture: i386
Date: Tue Dec 22 11:48:07 2009
DistroRelease: Ubuntu 9.10
Package: gimp 2.6.7-1ubuntu1
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-16.53-generic
SourcePackage: gimp
Uname: Linux 2.6.31-16-generic i686

I went out and found the Gimp switch to obtain the stacktrace above.

What else are you expecting from a user bug report?

Thanks!

-- 
gimp quiteinsanegimpplugin crashes on scan
https://bugs.launchpad.net/bugs/499516
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gimp in ubuntu.

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


[Bug 533154] Re: gnome-settings-daemon crashed with signal 5 in _XError()

2010-03-07 Thread Apport retracing service
*** This bug is a duplicate of bug 509958 ***
https://bugs.launchpad.net/bugs/509958

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #509958, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   http://launchpadlibrarian.net/40317624/CoreDump.gz

** Attachment removed: Dependencies.txt
   http://launchpadlibrarian.net/40317625/Dependencies.txt

** Attachment removed: Disassembly.txt
   http://launchpadlibrarian.net/40317626/Disassembly.txt

** Attachment removed: ProcMaps.txt
   http://launchpadlibrarian.net/40317627/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   http://launchpadlibrarian.net/40317628/ProcStatus.txt

** Attachment removed: Registers.txt
   http://launchpadlibrarian.net/40317629/Registers.txt

** Attachment removed: Stacktrace.txt
   http://launchpadlibrarian.net/40317630/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   http://launchpadlibrarian.net/40317631/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 509958
   gnome-settings-daemon crashed with signal 5 in _XError()

** Tags removed: need-amd64-retrace

-- 
gnome-settings-daemon crashed with signal 5 in _XError()
https://bugs.launchpad.net/bugs/533154
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in ubuntu.

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


[Bug 532282] Re: evince doesn't display certain PDF documents correctly

2010-03-07 Thread madbiologist
Install the poppler-data package from multiverse.

** Changed in: evince (Ubuntu)
   Status: New = Fix Released

-- 
evince doesn't display certain PDF documents correctly
https://bugs.launchpad.net/bugs/532282
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 533807] [NEW] reproductor de pelicula totem no tiene sonido

2010-03-07 Thread asael
Public bug reported:

El problema que tengo es el siguiente: Cuando intente ver una pelicula
en dvd y no pude; segui paso a paso lo que se me pidio que hiciera.
Efectivamente, logré ver la pelicula, pero no puedo escuchar nada. No se
si hara falta algo mas por hacer. Si alguien me pudiera ayudar. Gracias

** Affects: totem (Ubuntu)
 Importance: Undecided
 Status: Incomplete

-- 
reproductor de pelicula totem  no tiene sonido
https://bugs.launchpad.net/bugs/533807
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

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

[Bug 533626] Re: rhythmbox-metadata crashed with SIGSEGV in jpeg_idct_ifast()

2010-03-07 Thread Apport retracing service
*** This bug is a duplicate of bug 533627 ***
https://bugs.launchpad.net/bugs/533627

Thank you for taking the time to report this crash and helping to make
Ubuntu better.  This particular crash has already been reported and is a
duplicate of bug #533627, so is being marked as such.  Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: CoreDump.gz
   http://launchpadlibrarian.net/40388364/CoreDump.gz

** Attachment removed: Dependencies.txt
   http://launchpadlibrarian.net/40388365/Dependencies.txt

** Attachment removed: Disassembly.txt
   http://launchpadlibrarian.net/40388366/Disassembly.txt

** Attachment removed: ProcMaps.txt
   http://launchpadlibrarian.net/40388370/ProcMaps.txt

** Attachment removed: ProcStatus.txt
   http://launchpadlibrarian.net/40388371/ProcStatus.txt

** Attachment removed: Registers.txt
   http://launchpadlibrarian.net/40388372/Registers.txt

** Attachment removed: Stacktrace.txt
   http://launchpadlibrarian.net/40388373/Stacktrace.txt

** Attachment removed: ThreadStacktrace.txt
   http://launchpadlibrarian.net/40388374/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 533627
   rhythmbox-metadata crashed with SIGSEGV in jpeg_idct_ifast()

** Visibility changed to: Public

** Tags removed: need-amd64-retrace

-- 
rhythmbox-metadata crashed with SIGSEGV in jpeg_idct_ifast()
https://bugs.launchpad.net/bugs/533626
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 401823] Re: Gdk-WARNING **: XID collision, trouble ahead

2010-03-07 Thread dino99
new tests results on Lucid with latest updates installed:

FF 3.6 with plugin Shockwave Flash 10.0 r45 activated  make Xid collision 
errors appears and flooding .Xsession-errors.
Deactivating that plugin stop that problem on my end.

-- 
Gdk-WARNING **: XID collision, trouble ahead
https://bugs.launchpad.net/bugs/401823
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtk+2.0 in ubuntu.

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


[Bug 533807] Re: reproductor de pelicula totem no tiene sonido

2010-03-07 Thread Monkey
Sólo te pasa con dvds o también al ver otras cosas con otros
reproductores o vídeos en la red.

Gracias por hacer que Ubuntu sea mejor.

** Changed in: totem (Ubuntu)
   Status: New = Incomplete

-- 
reproductor de pelicula totem  no tiene sonido
https://bugs.launchpad.net/bugs/533807
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

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

[Bug 400485] Re: Empathy sounds not in default ubuntu theme

2010-03-07 Thread pavolzetor
no sound in lucid too

-- 
Empathy sounds not in default ubuntu theme
https://bugs.launchpad.net/bugs/400485
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 386024] Re: Brasero 0.8.2 - Afer erasing DVD-RW/DVD+RW system or the program is unable to recognize the DVD

2010-03-07 Thread Rinu
Hi Draycen,

I have to first find some RW to try it again. I guess I should report
results this week. And testing it on v.2.82.2 isn't any problem.

-- 
Brasero  0.8.2 - Afer erasing DVD-RW/DVD+RW system or the program is unable to 
recognize the DVD
https://bugs.launchpad.net/bugs/386024
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 533818] [NEW] cd playing seems to be fine but playing track 1 regardless of displaying that another track is played

2010-03-07 Thread soifran
Public bug reported:

Binary package hint: rhythmbox

i've tried to play a cd with rhythmbox ; but i can double click any
track, the display is showing that a track is playing, but i'm hearing
the sound of track 1 regardless of the one supposed to be playing.

this happens with a USB cd / dvd player which is brand new.

ubuntu 9.04
rhythmbox 0.12.0

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/rhythmbox
NonfreeKernelModules: nvidia
Package: rhythmbox 0.12.0-0ubuntu4
ProcEnviron:
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: rhythmbox
Uname: Linux 2.6.29-02062903-generic i686

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
cd playing seems to be fine but playing track 1 regardless of displaying that 
another track is played
https://bugs.launchpad.net/bugs/533818
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533818] Re: cd playing seems to be fine but playing track 1 regardless of displaying that another track is played

2010-03-07 Thread soifran

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40420504/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/40420505/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/40420506/ProcStatus.txt

-- 
cd playing seems to be fine but playing track 1 regardless of displaying that 
another track is played
https://bugs.launchpad.net/bugs/533818
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


[Bug 533822] [NEW] shows terminal-like background and needs to be restarted to actually log in

2010-03-07 Thread Felix Zweig
Public bug reported:

Binary package hint: gdm

After installing Lucid Alpha 3, it occurs that gdm doesn't work
correctly on my Acer Aspire One 532h. After every boot, the mouse cursor
appears on a black background, but no login windows. When pressing some
keys, strange characters appear in the background as if there's a
terminal.

After restarting X using SysRq + K, gdm performs normally and I'm able
to login.

ProblemType: Bug
Architecture: amd64
Date: Sun Mar  7 15:26:34 2010
DistroRelease: Ubuntu 10.04
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha amd64 (20100306)
Package: gdm 2.29.6-0ubuntu7
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: gdm
Uname: Linux 2.6.32-15-generic x86_64

** Affects: gdm (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid

-- 
shows terminal-like background and needs to be restarted to actually log in
https://bugs.launchpad.net/bugs/533822
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533822] Re: shows terminal-like background and needs to be restarted to actually log in

2010-03-07 Thread Felix Zweig

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40420434/Dependencies.txt

-- 
shows terminal-like background and needs to be restarted to actually log in
https://bugs.launchpad.net/bugs/533822
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533832] [NEW] Shift+T scaling offers no interpolation... blurry

2010-03-07 Thread clubsoda
Public bug reported:

Binary package hint: gimp

Gimp offers various ways to resize images, such as:-
1) Tools-Transform Tools-Scale (Shift+T)
2) Layer-Scale Layer
3) Image-Scale Image
4) Toolbox-Scale Tool

All but the first offer a choice of interpolation method. Unfortunately,
images resized using the Shift+T pop-up tool are noticeably inferior in
detail to those produced by the other approaches.

This can be reproduced for example by these steps:-
- select a large 3:4 ratio region from a 2Mpixel digital photo
- copy the region and create a new image from the clipboard
- resize the new image to 240x320 using method 1) above
- save as a JPEG
- undo the resizing and then resize using one of the other methods
- save as another JPEG
- compare side by side at 100% zoom.

Just now I've found Preferences-Tool Options-Scaling-Default
Interpolation which is set to Cubic but for some reason is not being
applied.

Tested version: 2.6.7-1ubuntu1.1 on Xubuntu Karmic.

** Affects: gimp (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: detail gimp scale

-- 
Shift+T scaling offers no interpolation... blurry
https://bugs.launchpad.net/bugs/533832
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gimp in ubuntu.

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


[Bug 486960] Re: Brasero disk burner won't get past Preparing to write.

2010-03-07 Thread Vidar
Same problem here, Ubuntu 9.10 x64

Prior to attempting burn I just unmounted /media/cdrom0 - burning ok!

-- 
Brasero disk burner won't get past Preparing to write.
https://bugs.launchpad.net/bugs/486960
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

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


[Bug 533328] Re: will not print some pdf files

2010-03-07 Thread Bill Reager
I had a feeling I should have attached the file to this report. Sorry I
didn't do it at the beginning.

** Attachment added: differentiated instruct.pdf
   http://launchpadlibrarian.net/40421794/differentiated%20instruct.pdf

-- 
will not print some pdf files
https://bugs.launchpad.net/bugs/533328
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

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


[Bug 533846] [NEW] Notification Icons: Request to add contact [Wishlist]

2010-03-07 Thread guigui14100
Public bug reported:

Binary package hint: empathy

Change the icon for notification Resquest add contact:

I would put icons with a buddy with a + , Just like facebook without the
1 and why not stay in monochrome design of ubuntu 10.04

ProblemType: Bug
Architecture: i386
Date: Sun Mar  7 15:40:32 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 10.04 Lucid Lynx - Alpha i386 (20100304)
Package: empathy 2.29.91.2-0ubuntu1
ProcEnviron:
 LANG=fr_FR.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: empathy
Uname: Linux 2.6.32-15-generic i686

** Affects: empathy (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: ubuntu-mono (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 lucid

-- 
Notification Icons: Request to add contact [Wishlist]
https://bugs.launchpad.net/bugs/533846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 533846] Re: Notification Icons: Request to add contact [Wishlist]

2010-03-07 Thread guigui14100

** Attachment added: Actual Icons
   http://launchpadlibrarian.net/40422102/Capture.png

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/40421114/Dependencies.txt

-- 
Notification Icons: Request to add contact [Wishlist]
https://bugs.launchpad.net/bugs/533846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 533846] Re: Notification Icons: Request to add contact [Wishlist]

2010-03-07 Thread guigui14100

** Attachment added: Example
   http://launchpadlibrarian.net/40422123/Capture-8.png

** Also affects: ubuntu-mono (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Notification Icons: Request to add contact [Wishlist]
https://bugs.launchpad.net/bugs/533846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to empathy in ubuntu.

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


[Bug 527951] Re: clock-applet crashed with SIGSEGV in g_main_context_dispatch()

2010-03-07 Thread bwallum
Alpha 3 live CD amd64, attempting to add location, crash appeared to
happen selecting weather tab.

-- 
clock-applet crashed with SIGSEGV in g_main_context_dispatch()
https://bugs.launchpad.net/bugs/527951
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

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


[Bug 532988] Re: burn the selection of files across several media (spanning) does not work

2010-03-07 Thread Neil Woolford
OK.  More testing, more confusion.  Now my pet theory about using
nautilus windows rather than tabs seems wrong.  I've just had spanned
burning fail again using two windows.  And work, on another machine,
with tabs or windows.

Trying to use Brasero as a stand-alone still fails always for me when
trying to span discs.  (So far...)

So it is an instability rather than a fixed bug.

-- 
burn the selection of files across several media (spanning) does not work 
https://bugs.launchpad.net/bugs/532988
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

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


[Bug 531556] Re: [Lucid] Blank Screen after login

2010-03-07 Thread Jim Rorie
Well, it's definitely not the arrandale processor in my machine.  You
guys are running all different stuff.

-- 
[Lucid] Blank Screen after login
https://bugs.launchpad.net/bugs/531556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 510525] Re: Network error

2010-03-07 Thread Brian Curtis
This can be fix released as it's fixed in lucid.  Marking as such.

** Changed in: empathy (Ubuntu)
   Status: Incomplete = Fix Released

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

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


[Bug 533821] [NEW] [lucid] cannot play sound only from one of speakers

2010-03-07 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Binary package hint: pulseaudio

Hallo, I cannot play volume from only one speaker, it always plays from
both

If I try change it to left or right, volume turns off and when I turn it
on, it plays from both speakers

ProblemType: Bug
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  pk 1411 F pulseaudio
 /dev/snd/pcmC0D0p:   pk 1411 F...m pulseaudio
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xfc02 irq 17'
   Mixer name   : 'Conexant CX20561 (Hermosa)'
   Components   : 'HDA:14f15051,17aa2100,0010 
HDA:14f12c06,17aa2122,0010'
   Controls  : 14
   Simple ctrls  : 7
Date: Sun Mar  7 15:31:34 2010
DistroRelease: Ubuntu 10.04
InstallationMedia: Ubuntu 9.10 Karmic Koala - Release amd64 (20091027)
Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu11
ProcEnviron:
 LANG=sk_SK.utf8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.32-15.22-generic
SourcePackage: pulseaudio
Uname: Linux 2.6.32-15-generic x86_64

** Affects: gnome-media (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug lucid
-- 
[lucid] cannot play sound only from one of speakers
https://bugs.edge.launchpad.net/bugs/533821
You received this bug notification because you are a member of Ubuntu Desktop 
Bugs, which is subscribed to gnome-media in ubuntu.

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


[Bug 531556] Re: [Lucid] Blank Screen after login

2010-03-07 Thread Petr Tomeš
I've done a clean install today from http://cdimage.ubuntu.com/daily-
live/20100306/lucid-desktop-amd64.iso and I can not see that bug again.
I don't know what happened.

-- 
[Lucid] Blank Screen after login
https://bugs.launchpad.net/bugs/531556
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gdm in ubuntu.

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


[Bug 533821] Re: [lucid] cannot play sound only from one of speakers

2010-03-07 Thread Daniel T Chen
If you use pavucontrol and unlock the /stream/ volume, you can then
shift balance. See also bug 532095

** Package changed: pulseaudio (Ubuntu) = gnome-media (Ubuntu)

-- 
[lucid] cannot play sound only from one of speakers
https://bugs.launchpad.net/bugs/533821
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-media in ubuntu.

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


[Bug 533818] Re: cd playing seems to be fine but playing track 1 regardless of displaying that another track is played

2010-03-07 Thread soifran
after further testing the bug appears also when using the inside cd
player of my computer

-- 
cd playing seems to be fine but playing track 1 regardless of displaying that 
another track is played
https://bugs.launchpad.net/bugs/533818
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

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


  1   2   3   >