[Compiz] [Bug 487519] Re: “window previews” plugin leaves garbage on screen

2011-05-31 Thread Bogdan Butnaru
Hi Pedro! The bug seems to have gone away at some point. (I had disabled
the plugin for a while so I didn’t notice.)

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

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/487519

Title:
  “window previews” plugin leaves garbage on screen

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 783926] Re: Drag-Drop works only on --replace (ubuntu-classic session)

2011-05-31 Thread Matteo Biagi
I had not brought this issue until the other day when I updated the
packages.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/783926

Title:
  Drag-Drop works only on --replace (ubuntu-classic session)

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 754948] Re: Desktop Wall & Viewport Switcher: Bindings for "Next" and "Prev" workspaces dont work. Bindings that use screen edges don't work.

2011-05-31 Thread Sam "SmSpillaz" Spilsbury
The fix is pending. Have a look at
http://bazaar.launchpad.net/~unity-team/compiz-core/core.fix_edgebuttons/revision/2755

It is dependent on a few other things though, so once we land them
we'll land this one too.

On Wed, Jun 1, 2011 at 3:31 AM, fguille  wrote:
> I've succeded in patching Natty compiz 0.9.4 in order to have edge+mouse 
> button binding work again.
> However, something I couldn't fix yet : if top left+left click is Expose, 
> clicking again doesn't exit Expose. Same for Scale. I can live with it 
> however and will thus keep Natty.
> Here is the 1 line patch in context diff (don't ask me why it works) :
> diff -cr compiz-0.9.4+bzr20110415/src/event.cpp 
> compiz-0.9.4+bzr20110415.fguille/src/event.cpp
> *** compiz-0.9.4+bzr20110415/src/event.cpp      2011-04-15 11:01:04.0 
> +0200
> --- compiz-0.9.4+bzr20110415.fguille/src/event.cpp      2011-05-21 
> 10:51:47.839203285 +0200
> ***
> *** 155,163 
>
>        if (event->window != priv->edgeWindow)
>        {
> !           if (grabs.empty () || event->window != root)
> !               return false;
> !       }
>
>        for (i = 0; i < SCREEN_EDGE_NUM; i++)
>        {
> --- 155,163 
>
>        if (event->window != priv->edgeWindow)
>        {
> !                   if (!priv->grabs.empty () || event->window != root)
> !                       return false;
> !               }
>
>        for (i = 0; i < SCREEN_EDGE_NUM; i++)
>        {
>
> --
> You received this bug notification because you are a member of compiz
> packagers, which is subscribed to compiz in Ubuntu.
> https://bugs.launchpad.net/bugs/754948
>
> Title:
>  Desktop Wall & Viewport Switcher: Bindings for "Next" and "Prev"
>  workspaces dont work. Bindings that use screen edges don't work.
>
> ___
> Mailing list: https://launchpad.net/~compiz
> Post to     : compiz@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~compiz
> More help   : https://help.launchpad.net/ListHelp
>


-- 
Sam Spilsbury

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/754948

Title:
  Desktop Wall & Viewport Switcher: Bindings for "Next" and "Prev"
  workspaces dont work. Bindings that use screen edges don't work.

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 687732] Re: gtk.Label link-activate signal broken with compiz in natty

2011-05-31 Thread Sam "SmSpillaz" Spilsbury
On Wed, Jun 1, 2011 at 12:09 PM, Conscious User  wrote:
> I'm developing an application that uses linked labels a lot, and it
> seems that this bug is not completely solved, it's only happening less
> often. After testing with and without Compiz, I'm more or less convinced
> that links always work when Compiz is off and occasionally do not work
> when Compiz is on.

They won't work when the window is not focused, yes.

Have a look at section 6.3 of the ICCCM for why they can't work:
http://tronche.com/gui/x/icccm/sec-6.html . In order to raise windows
we need to ensure that we can capture button clicks on them (otherwise
click raise won't work on anything other than the titlebar). By doing
this it will trigger a "grab" on the other application and it gets a
LeaveNotify event (the same kind of event that is given when the
cursor leaves the subwindow).

... unfortunately there is a bug in GTK+ where it does not actually
check the *reason* the LeaveNotify event was given, so the link will
not work in the case where we have the grab. I poked through the GTK+
code to try and figure out why this was, but I couldn't get a
substantive answer.

I've changed the compiz code in N to reflect this problem, so now we
do passive button grabs as little as possible, and only on windows
that we actually own.

Let me know if you're still experiencing this problem on focused and
raised windows.

>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/687732
>
> Title:
>  gtk.Label  link-activate signal broken with compiz in natty
>
> Status in Unity:
>  Fix Released
> Status in “compiz” package in Ubuntu:
>  Fix Released
>
> Bug description:
>  The attached test program works fine in maverick but fails in natty.
>
>  In a nutshell, when clicking on the link in the label nothing happens in 
> natty but I expect that it prints something
>  (which it does in maverick). Oddly keyboard navigation (pressing enter on 
> it) works.
>


-- 
Sam Spilsbury

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/687732

Title:
  gtk.Label  link-activate signal broken with compiz in natty

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 720064] Re: Artifact on switcher window

2011-05-31 Thread Launchpad Bug Tracker
[Expired for unity (Ubuntu) because there has been no activity for 60
days.]

** Changed in: unity (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/720064

Title:
  Artifact on switcher window

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 720064] Re: Artifact on switcher window

2011-05-31 Thread Launchpad Bug Tracker
[Expired for compiz (Ubuntu) because there has been no activity for 60
days.]

** Changed in: compiz (Ubuntu)
   Status: Incomplete => Expired

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/720064

Title:
  Artifact on switcher window

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 687732] Re: gtk.Label link-activate signal broken with compiz in natty

2011-05-31 Thread Conscious User
I'm developing an application that uses linked labels a lot, and it
seems that this bug is not completely solved, it's only happening less
often. After testing with and without Compiz, I'm more or less convinced
that links always work when Compiz is off and occasionally do not work
when Compiz is on.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/687732

Title:
  gtk.Label  link-activate signal broken with compiz in natty

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 608877] Re: Doesn't put newly focused full screen window on top

2011-05-31 Thread Sam "SmSpillaz" Spilsbury
EWMH says that we need to put it on top:
http://standards.freedesktop.org/wm-spec/wm-spec-latest.html#id2505639

On Sat, Jan 15, 2011 at 1:36 AM, Ubuntu QA's Bug Bot
 wrote:
> ** Tags added: compiz-0.8
>
> --
> You received this bug notification because you are a member of compiz
> packagers, which is subscribed to compiz in ubuntu.
> https://bugs.launchpad.net/bugs/608877
>
> Title:
>  Doesn't put newly focused full screen window on top
>
> ___
> Mailing list: https://launchpad.net/~compiz
> Post to     : compiz@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~compiz
> More help   : https://help.launchpad.net/ListHelp
>


-- 
Sam Spilsbury

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/608877

Title:
  Doesn't put newly focused full screen window on top

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 709461] Re: Application windows can sometimes fail to display and will mask regions of the screen

2011-05-31 Thread Daniel van Vugt
Nice work Sam.

I suspect Dmitry is right though -- Most people watching this bug
actually are experiencing bug 789580 (which probably should have been
bug 779651 or another...).

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/709461

Title:
  Application windows can sometimes fail to display and will mask
  regions of the screen

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 779651] Re: Invisible window caused by Application switcher plugins

2011-05-31 Thread Daniel van Vugt
*** This bug is a duplicate of bug 709461 ***
https://bugs.launchpad.net/bugs/709461

Correction: This should be a duplicate of bug 789580.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/779651

Title:
  Invisible window caused by Application switcher plugins

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 608877] Re: Doesn't put newly focused full screen window on top

2011-05-31 Thread Darxus
Yup, still an issue.

Although I need to start up compiz with "compiz --replace" since Visual
Effects appears to be gone from Appearance.

$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=11.04
DISTRIB_CODENAME=natty
DISTRIB_DESCRIPTION="Ubuntu 11.04"


** Changed in: compiz (Ubuntu)
   Status: Incomplete => New

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/608877

Title:
  Doesn't put newly focused full screen window on top

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 778490] Re: Random logout after upgrading to Natty Narwhal 11.04

2011-05-31 Thread jr.swordfish
In the same boat here.

HW: MSI GT 660 with GTX285M

Problem: Frequent auto logouts. I suspect xorg crash due to some
condition.

Pattern: Running on 80-100% battery. Firefox running. Click on a flash
video. Video starts. Auto logout at the start of video or after 2-3
seconds.

Workaround: Plug-in power and the battery is charging. Dont see the
random logout. (This workaround could be just a misleading one. But it
is working for me at the moment.)

xsession-errors: I do see some fatal errors in the log. Log attached for
anybody whio wants to help out. Thanks in advance.



** Attachment added: "xsession-errors"
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/778490/+attachment/2149969/+files/xsession-errors

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/778490

Title:
  Random logout after upgrading to Natty Narwhal 11.04

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 86184] Re: Can't change cursor style using Compiz.

2011-05-31 Thread vivichrist
sorry 11.04

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/86184

Title:
  Can't change cursor style using Compiz.

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 786325] Re: Unable to change mouse cursor theme and size

2011-05-31 Thread jay armstrong
I'd like to see it get higher priority as it's an accessibility issue
for anyone with bad eyesight or even just a large screen.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/786325

Title:
  Unable to change mouse cursor theme and size

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 446566] Re: Compiz not starting automatically on login

2011-05-31 Thread PhobosK
Well sadly the people that do these kind of nonsense are not the one 
listening They just do the things THEY think are the right ones
And Natty with its bugs/Unity/Classic/etc.  etc. is a total disgrace and i 
think switching to another distro will happen very soon for me...

Anyway a temp workaround to this problem till someone decides it is of 
importance:
1. apt-get install fusion-icon
2. Start it and make sure for window manager you select Compiz and for window 
decorator - GTK window decorator
3. Add to the startup applications (in the Gnome Control Center) an entry 
reading: 
  compiz --replace
4. Logout and login again to be sure it works fine

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/446566

Title:
  Compiz not starting automatically on login

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 772222] Re: window decoration disappear

2011-05-31 Thread James Roper
Also, which debug symbols package should I be installing?  I've
installed compiz-core-dbgsym, and libdecoration0-dbgsym, not sure if
either of those are right?

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/77

Title:
  window decoration disappear

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 772222] Re: window decoration disappear

2011-05-31 Thread James Roper
Sam, it happens fairly frequently (once every day or two) when I'm
running IntelliJ IDEA, which is a Java Swing app running on Suns JDK
1.6.0_18 JVM downloaded from Suns website.  Although I can't reliably
reproduce it, it tends to happen on certain interactions with controls,
for example, I'll right click on a file, a context menu pops up and at
the same time the decorations disappear.

I've enabled apport and will send a crash report when I get one.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/77

Title:
  window decoration disappear

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 86184] Re: Can't change cursor style using Compiz.

2011-05-31 Thread vivichrist
on fresh install bug is still present in Gnome but not Unity for 10.04

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/86184

Title:
  Can't change cursor style using Compiz.

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 600867] Re: Compiz fails to load when screen width == maxTextureSize

2011-05-31 Thread Kory
Well it still seems to affect me even when running 11.04.  It seems to
work for much longer periods of time but every now and then the window
decorations will disappear.  I'll run more tests to see what is
triggering it but I still have problems...

On Tue, May 31, 2011 at 4:13 AM, Brian Starkey
<600...@bugs.launchpad.net> wrote:
> I'm afraid I have got a new system (with an nVidia card) so won't be
> able to do any more testing on this bug.
>
> --
> You received this bug notification because you are a direct subscriber
> of the bug.
> https://bugs.launchpad.net/bugs/600867
>
> Title:
>  Compiz fails to load when screen width == maxTextureSize
>
> Status in “compiz” package in Ubuntu:
>  Incomplete
>
> Bug description:
>  Binary package hint: compiz
>
>  in the compiz-0.8.4/debian/patches/060_move_checks_to_compiz.patch
>  file there is an addition in the src/texture.c file that compares the
>  width or height to the maxTextureSize.  The code is checking if it is
>  '>=' where it should only check if it is '>'.  I have fixed my own
>  code and compiz works with this fix.  This is a debian patch and
>  should be fixed properly.  My maxTextureSize is 2048 and my screen
>  resolution is 2048 x 1536.
>
>  Thanks!
>
>  ProblemType: Bug
>  DistroRelease: Ubuntu 10.04
>  Package: compiz 1:0.8.4-0ubuntu15.1
>  ProcVersionSignature: Ubuntu 2.6.32-23.37-generic 2.6.32.15+drm33.5
>  Uname: Linux 2.6.32-23-generic i686
>  Architecture: i386
>  CompizPlugins: [shift,wobbly]
>  Date: Thu Jul  1 20:39:12 2010
>  EcryptfsInUse: Yes
>  InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
>  Lsusb:
>   Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
>   Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
>   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
>   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>  MachineType: IBM 183223U
>  PackageArchitecture: all
>  PccardctlIdent:
>   Socket 0:
>     no product info available
>   Socket 1:
>     no product info available
>  PccardctlStatus:
>   Socket 0:
>     no card
>   Socket 1:
>     no card
>  PciDisplay: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc 
> RV350 [Mobility Radeon 9600 M10] [1002:4e50]
>  ProcCmdLine: BOOT_IMAGE=/vmlinuz-2.6.32-23-generic 
> root=UUID=b527d1c0-1bd9-427d-a341-67dbb2dec2ed ro quiet splash
>  ProcEnviron:
>   PATH=(custom, user)
>   LANG=en_US.UTF-8
>   SHELL=/bin/bash
>  RelatedPackageVersions:
>   xserver-xorg 1:7.5+5ubuntu1
>   libgl1-mesa-glx 7.7.1-1ubuntu3
>   libdrm2 2.4.18-1ubuntu3
>   xserver-xorg-video-intel N/A
>   xserver-xorg-video-ati 1:6.13.0-1ubuntu5
>  SourcePackage: compiz
>  XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
>  dmi.bios.date: 06/02/2006
>  dmi.bios.vendor: IBM
>  dmi.bios.version: 1RETDPWW (3.21 )
>  dmi.board.name: 183223U
>  dmi.board.vendor: IBM
>  dmi.board.version: Not Available
>  dmi.chassis.asset.tag: No Asset Information
>  dmi.chassis.type: 10
>  dmi.chassis.vendor: IBM
>  dmi.chassis.version: Not Available
>  dmi.modalias: 
> dmi:bvnIBM:bvr1RETDPWW(3.21):bd06/02/2006:svnIBM:pn183223U:pvrThinkPadR50p:rvnIBM:rn183223U:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
>  dmi.product.name: 183223U
>  dmi.product.version: ThinkPad R50p
>  dmi.sys.vendor: IBM
>  system: distro = Ubuntu, architecture = i686, kernel = 2.6.32-23-generic
>
> To unsubscribe from this bug, go to:
> https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/600867/+subscribe
>


-- 
===
"The philosophy of gun control: Teenagers are roaring through town at
90 MPH, where the speed limit is 25. Your solution is to lower the
speed limit to 20." - Sam Cohen, inventor of the Neutron Bomb

"We maintain [privately-owned] arms largely because we seek to prevent
violence. Those that wish to disarm us do so that they may perpetrate
it with impunity." - R. Murray

"Men cannot be governed and remain men. Domesticate the wolf and he
changes both physically and mentally. His muzzle shrinks, his teeth
diminish, he loses size, speed, and strength, He grows spots. His ears
flop. His brain withers. He becomes a dog. Men are on the verge of
becoming dogs -- the changes are underway already -- unless we do
something to stop it."
The Ceo Lia Wheeler, Phoebus Krumm, forthcoming

"No man ever believes that the Bible means what it says; he is always
convinced that it says what he means."
George Bernard Shaw

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/600867

Title:
  Compiz fails to load when screen width == maxTextureSize

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 86184] Re: Can't change cursor style using Compiz.

2011-05-31 Thread vivichrist
on fresh install bug is still present in Gnome but not Unity

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/86184

Title:
  Can't change cursor style using Compiz.

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 790914] Re: gnome top menu shadow effect broken artifact

2011-05-31 Thread mjreged
** Attachment added: "top right corner shows the artifact."
   
https://bugs.launchpad.net/bugs/790914/+attachment/2149673/+files/Screenshot-desktop.png

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/790914

Title:
  gnome top menu shadow effect broken artifact

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 790914] [NEW] gnome top menu shadow effect broken artifact

2011-05-31 Thread mjreged
Public bug reported:

Binary package hint: compiz

menu shadow is not drawn appropriately on many occasions.  The right top corner 
where you have the clock and turn off applets shown. I use Gnome classic, but i 
believe it also appeared in unity desktop as well.
I have 2 monitors. Resolution is at 1600x1200

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: compiz 1:0.9.4+bzr20110415-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic x86_64
NonfreeKernelModules: fglrx
Architecture: amd64
CompizPlugins: 
[core,bailer,detection,composite,opengl,copytex,imgjpeg,compiztoolbox,decor,regex,animation,vpswitch,snap,workarounds,expo,mousepoll,grid,place,move,resize,imgpng,gnomecompat,ezoom,wall,session,staticswitcher,fade,scale]
CompositorRunning: compiz
Date: Tue May 31 16:57:15 2011
DistUpgraded: Fresh install
DistroCodename: natty
DistroVariant: ubuntu
DkmsStatus: fglrx, 8.840, 2.6.38-8-generic, x86_64: installed
GraphicsCard:
 ATI Technologies Inc Cedar PRO [Radeon HD 5450] [1002:68f9] (prog-if 00 [VGA 
controller])
   Subsystem: Hewlett-Packard Company Device [103c:2126]
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427.1)
InstallationMedia_: Ubuntu 11.04 "Natty Narwhal" - Release amd64 (20110427.1)
JockeyStatus: xorg:fglrx - ATI/AMD proprietary FGLRX graphics driver 
(Proprietary, Enabled, In use)
MachineType: Hewlett-Packard HP Compaq 8200 Elite CMT PC
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=e481514f-9654-4e36-a13f-c4c38ee8633a ro quiet splash vt.handoff=7
ProcVersionSignature_: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Renderer: Unknown
SourcePackage: compiz
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/06/2011
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: J01 v02.01
dmi.board.asset.tag: 2UA1171250
dmi.board.name: 1494
dmi.board.vendor: Hewlett-Packard
dmi.chassis.asset.tag: 2UA1171250
dmi.chassis.type: 6
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrJ01v02.01:bd04/06/2011:svnHewlett-Packard:pnHPCompaq8200EliteCMTPC:pvr:rvnHewlett-Packard:rn1494:rvr:cvnHewlett-Packard:ct6:cvr:
dmi.product.name: HP Compaq 8200 Elite CMT PC
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.4+bzr20110415-0ubuntu2
version.fglrx-installer: fglrx-installer N/A
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

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


** Tags: amd64 apport-bug compiz-0.9 natty ubuntu

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/790914

Title:
  gnome top menu shadow effect broken artifact

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 727143] Re: unity-window-decorator crashes with SIGSEGV when closing Java windows

2011-05-31 Thread Nerdknight
Sam:
I've made a java program to reproduce this bug. It's attached to the bug thread:
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/727143/+attachment/2109053/+files/CompizWindowsBorderDisapperTest.tar.gz
The jar executable is inside the dist folder. To reproduce the bug, open 
several windows with it and then close them.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/727143

Title:
  unity-window-decorator crashes with SIGSEGV when closing Java windows

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 770160] Re: windows start to move slow after using compiz for some hours

2011-05-31 Thread nebirhos
"compiz --replace" doesn't solve the problem in classic ubuntu desktop

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/770160

Title:
  windows start to move slow after using compiz for some hours

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 754948] Re: Desktop Wall & Viewport Switcher: Bindings for "Next" and "Prev" workspaces dont work. Bindings that use screen edges don't work.

2011-05-31 Thread fguille
I've succeded in patching Natty compiz 0.9.4 in order to have edge+mouse button 
binding work again.
However, something I couldn't fix yet : if top left+left click is Expose, 
clicking again doesn't exit Expose. Same for Scale. I can live with it however 
and will thus keep Natty.
Here is the 1 line patch in context diff (don't ask me why it works) :
diff -cr compiz-0.9.4+bzr20110415/src/event.cpp 
compiz-0.9.4+bzr20110415.fguille/src/event.cpp
*** compiz-0.9.4+bzr20110415/src/event.cpp  2011-04-15 11:01:04.0 
+0200
--- compiz-0.9.4+bzr20110415.fguille/src/event.cpp  2011-05-21 
10:51:47.839203285 +0200
***
*** 155,163 
  
if (event->window != priv->edgeWindow)
{
!   if (grabs.empty () || event->window != root)
!   return false;
!   }
  
for (i = 0; i < SCREEN_EDGE_NUM; i++)
{
--- 155,163 
  
if (event->window != priv->edgeWindow)
{
!   if (!priv->grabs.empty () || event->window != root)
!   return false;
!   }
  
for (i = 0; i < SCREEN_EDGE_NUM; i++)
{

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/754948

Title:
  Desktop Wall & Viewport Switcher: Bindings for "Next" and "Prev"
  workspaces dont work. Bindings that use screen edges don't work.

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 149179] hey Bug

2011-05-31 Thread mitkonanov
*** This bug is a duplicate of bug 141472 ***
https://bugs.launchpad.net/bugs/141472

Bug hi i wanted to stop being so lazy
http://g.msn.com.br/BR9/1369.0?http://cnbc7.com/news

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/149179

Title:
  Window title drawn to the right of window for RTL languages

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 750386] Re: compiz crashed with SIGABRT in raise()

2011-05-31 Thread Didier Roche
** Changed in: unity
   Importance: Undecided => Critical

** Changed in: compiz (Ubuntu)
   Importance: Medium => Critical

** Changed in: unity (Ubuntu)
   Importance: Undecided => Critical

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/750386

Title:
  compiz crashed with SIGABRT in raise()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 709461] Re: Application windows can sometimes fail to display and will mask regions of the screen

2011-05-31 Thread Dmitry Shachnev
** Description changed:

  Binary package hint: unity
  
  On 2 separate machines  w/ updated as of 1/28 -
  
  On rare occasions a window will open in the top left corner with top deco 
buried.  The most likely for this to happen is a utility window like  update 
manager.
  After pulling back down into the desktop (Alt+click) it may or may not show 
some graphical distortion (window split in 2 parts), if so it returns to normal 
if opening any other window.
  
  What does appear to happen is an invisible window is created in the
  area where it was pulled down to, this only happens on the current
  workspace, any others are unaffected
  
  Attached xwininfo - first shows on affected workspace, 2nd when
  switching to another and clicking in same spot
  
  Note that this does not always happen, I'm thinking the 'buried' window
  may need to show some distorttion, not sure yet
  
  ### IMPORTANT ###
- This can cause the central area of the screen (where the Alt-Tab switcher is 
drawn) to be unclickable. This also happens on Classic desktop.
- 
- ### REPRODUCTION STEPS (thanks to glennric) ###
- 1. Log in
- 2. Open a terminal and move it away from the center of the screen where the 
switcher will appear. Make sure that it still has focus.
- 3. Hold down Alt-Tab to activate and show the switcher. Sometimes you need to 
call the switcher twice.
- 4. While the switcher is still visible move the mouse to a point right above 
the very bottom of the gray switcher window (it should be window titles area, 
not thumbnails area, within 1-5 pixels of the bottom is sufficient)
- 5. Click there. You will see that the desktop does not take focus, and the 
terminal window still has focus. If you run xwininfo you can click at that 
location and you will see information about a window that you can't see, and 
that is definitely not the background nautilus window.
+ This can cause some areas of the screen to be unclickable. This also happens 
on Classic desktop.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: unity 3.2.16-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.38-1.27-generic 2.6.38-rc2
  Uname: Linux 2.6.38-1-generic i686
  NonfreeKernelModules: nvidia
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86 Kernel Module  173.14.28  Wed Sep 29 09:47:25 
PDT 2010
   GCC version:  gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-2ubuntu1)
  Architecture: i386
  Date: Fri Jan 28 14:36:27 2011
  DistUpgraded: Fresh install
  DistroCodename: natty
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia-current, 260.19.29, 2.6.37-12-generic, i686: installed
   nvidia-current, 260.19.29, 2.6.38-1-generic, i686: installed
   nvidia-173, 173.14.28, 2.6.37-12-generic, i686: installed
   nvidia-173, 173.14.28, 2.6.38-1-generic, i686: installed
  GraphicsCard:   Subsystem: Dell Device [1028:0209]
  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110120)
  InstallationMedia_: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110120)
  MachineType: Dell Inc. XPS M1330
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_US.UTF-8
   LC_MESSAGES=en_US.utf8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-1-generic 
root=UUID=28d68c1b-9e85-45a3-9ec2-ad4f992ba387 ro
  ProcVersionSignature_: Ubuntu 2.6.38-1.27-generic 2.6.38-rc2
  SourcePackage: unity
  dmi.bios.date: 12/26/2008
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A15
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd12/26/2008:svnDellInc.:pnXPSM1330:pvr:rvnDellInc.:rn:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: XPS M1330
  dmi.sys.vendor: Dell Inc.
  version.libdrm2: libdrm2 2.4.23-1ubuntu3
  version.libgl1-mesa-glx: libgl1-mesa-glx 7.10-1ubuntu1
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  version.xserver-xorg: xserver-xorg 1:7.5+6ubuntu8
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.13.2+git20110124.fadee040-0ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-1ubuntu2
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu1

** Tags removed: patch

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/709461

Title:
  Application windows can sometimes fail to display and will mask
  regions of the screen

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 709461] Re: Application windows can sometimes fail to display and will mask regions of the screen

2011-05-31 Thread Sam "SmSpillaz" Spilsbury
On Wed, Jun 1, 2011 at 12:31 AM, Dmitry Shachnev  wrote:
> @Sam:
>>Ah, I can see this one. Thanks. It's a different issue to the *actual* 
>>invisible window bug (might be worth filing a separate bug over this) but I 
>>know what's going on, thanks for that.
>
> Most duplicates of this bug are about unclickable areas, and for most
> people the unclickable area is Alt-Tab switcher. Should I really report
> a new bug about the switcher?

There already is one, see 789580. And I've just fixed it now :)

>
> Also, I attach my xwininfo for that.
>
> ** Attachment added: "XWinInfo for the invisible Alt-Tab switcher"
>   
> https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/709461/+attachment/2149254/+files/alt-tab.xwininfo
>
> --
> You received this bug notification because you are a bug assignee.
> https://bugs.launchpad.net/bugs/709461
>
> Title:
>  Application windows can sometimes fail to display and will mask
>  regions of the screen
>
> Status in Unity:
>  Triaged
> Status in “compiz” package in Ubuntu:
>  Triaged
> Status in “unity” package in Ubuntu:
>  Triaged
> Status in “compiz” source package in Natty:
>  Triaged
> Status in “unity” source package in Natty:
>  Triaged
> Status in “compiz” package in Fedora:
>  New
>
> Bug description:
>  Binary package hint: unity
>
>  On 2 separate machines  w/ updated as of 1/28 -
>
>  On rare occasions a window will open in the top left corner with top deco 
> buried.  The most likely for this to happen is a utility window like  update 
> manager.
>  After pulling back down into the desktop (Alt+click) it may or may not show 
> some graphical distortion (window split in 2 parts), if so it returns to 
> normal if opening any other window.
>
>  What does appear to happen is an invisible window is created in the
>  area where it was pulled down to, this only happens on the current
>  workspace, any others are unaffected
>
>  Attached xwininfo - first shows on affected workspace, 2nd when
>  switching to another and clicking in same spot
>
>  Note that this does not always happen, I'm thinking the 'buried'
>  window may need to show some distorttion, not sure yet
>
>  ### IMPORTANT ###
>  This can cause the central area of the screen (where the Alt-Tab switcher is 
> drawn) to be unclickable. This also happens on Classic desktop.
>
>  ### REPRODUCTION STEPS (thanks to glennric) ###
>  1. Log in
>  2. Open a terminal and move it away from the center of the screen where the 
> switcher will appear. Make sure that it still has focus.
>  3. Hold down Alt-Tab to activate and show the switcher. Sometimes you need 
> to call the switcher twice.
>  4. While the switcher is still visible move the mouse to a point right above 
> the very bottom of the gray switcher window (it should be window titles area, 
> not thumbnails area, within 1-5 pixels of the bottom is sufficient)
>  5. Click there. You will see that the desktop does not take focus, and the 
> terminal window still has focus. If you run xwininfo you can click at that 
> location and you will see information about a window that you can't see, and 
> that is definitely not the background nautilus window.
>
>  ProblemType: Bug
>  DistroRelease: Ubuntu 11.04
>  Package: unity 3.2.16-0ubuntu1
>  ProcVersionSignature: Ubuntu 2.6.38-1.27-generic 2.6.38-rc2
>  Uname: Linux 2.6.38-1-generic i686
>  NonfreeKernelModules: nvidia
>  .proc.driver.nvidia.version:
>   NVRM version: NVIDIA UNIX x86 Kernel Module  173.14.28  Wed Sep 29 09:47:25 
> PDT 2010
>   GCC version:  gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-2ubuntu1)
>  Architecture: i386
>  Date: Fri Jan 28 14:36:27 2011
>  DistUpgraded: Fresh install
>  DistroCodename: natty
>  DistroVariant: ubuntu
>  DkmsStatus:
>   nvidia-current, 260.19.29, 2.6.37-12-generic, i686: installed
>   nvidia-current, 260.19.29, 2.6.38-1-generic, i686: installed
>   nvidia-173, 173.14.28, 2.6.37-12-generic, i686: installed
>   nvidia-173, 173.14.28, 2.6.38-1-generic, i686: installed
>  GraphicsCard:   Subsystem: Dell Device [1028:0209]
>  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110120)
>  InstallationMedia_: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110120)
>  MachineType: Dell Inc. XPS M1330
>  ProcEnviron:
>   LANGUAGE=en_US:en
>   PATH=(custom, user)
>   LANG=en_US.UTF-8
>   LC_MESSAGES=en_US.utf8
>   SHELL=/bin/bash
>  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-1-generic 
> root=UUID=28d68c1b-9e85-45a3-9ec2-ad4f992ba387 ro
>  ProcVersionSignature_: Ubuntu 2.6.38-1.27-generic 2.6.38-rc2
>  SourcePackage: unity
>  dmi.bios.date: 12/26/2008
>  dmi.bios.vendor: Dell Inc.
>  dmi.bios.version: A15
>  dmi.board.vendor: Dell Inc.
>  dmi.chassis.type: 8
>  dmi.chassis.vendor: Dell Inc.
>  dmi.modalias: 
> dmi:bvnDellInc.:bvrA15:bd12/26/2008:svnDellInc.:pnXPSM1330:pvr:rvnDellInc.:rn:rvr:cvnDellInc.:ct8:cvr:
>  dmi.product.name: XPS M1330
>  dmi.sys.vendor: Dell Inc.
>  version.libdrm2: libdrm2 2.4.23-1ubuntu3
>  version.libgl1-mesa-glx: libgl1-mesa-glx 7.10-1ubuntu1

[Compiz] [Bug 767095] Re: 1 pixel icons in notification-area-applet when compiz is the windows manager

2011-05-31 Thread Didier Roche
** Changed in: unity (Ubuntu Oneiric)
   Status: Invalid => In Progress

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/767095

Title:
  1 pixel icons in notification-area-applet when compiz is the windows
  manager

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 727143] Re: unity-window-decorator crashes with SIGSEGV when closing Java windows

2011-05-31 Thread mauros
It happens for me as well with soapui 3.6.1 - when an popup dialog
opens.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/727143

Title:
  unity-window-decorator crashes with SIGSEGV when closing Java windows

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 709461] Re: Application windows can sometimes fail to display and will mask regions of the screen

2011-05-31 Thread Dmitry Shachnev
@Sam:
>Ah, I can see this one. Thanks. It's a different issue to the *actual* 
>invisible window bug (might be worth filing a separate bug over this) but I 
>know what's going on, thanks for that.

Most duplicates of this bug are about unclickable areas, and for most
people the unclickable area is Alt-Tab switcher. Should I really report
a new bug about the switcher?

Also, I attach my xwininfo for that.

** Attachment added: "XWinInfo for the invisible Alt-Tab switcher"
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/709461/+attachment/2149254/+files/alt-tab.xwininfo

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/709461

Title:
  Application windows can sometimes fail to display and will mask
  regions of the screen

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 740767] Re: gtk-window-decorator crashed with SIGSEGV in gwd_get_decor_frame()

2011-05-31 Thread jchronakis
Same problem here and it was fixed with the suggested setting:

Compiz Settings > Window decoration -> Command: /usr/bin/compiz-
decorator

BTW, I am on "Ubuntu classic desktop".

Thank you for the fix, I can't live without the "Always on top" and
"Always on visible workspace" :)

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/740767

Title:
  gtk-window-decorator crashed with SIGSEGV in gwd_get_decor_frame()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 727143] Re: unity-window-decorator crashes with SIGSEGV when closing Java windows

2011-05-31 Thread JD Rogers
Possible temporary workaround:

I've had this problem quite a lot since upgrading while running matlab
as others have commented. Once the error message pops up, answering
yes/no/cancel all results in losing all window decorations.

However, if instead of answering the error message, if you merely
minimize the error dialog, the window decorations continue functioning
apparently indefinitely. I only have an N of one here, so YMMV, but
until the patches come, it appears to work for me.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/727143

Title:
  unity-window-decorator crashes with SIGSEGV when closing Java windows

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 772222] Re: window decoration disappear

2011-05-31 Thread Sam Spilsbury
Yeah, I've been trying to fix this one.

Could you follow the instructions in
https://wiki.ubuntu.com/Apport#How to enable apport and
https://wiki.kubuntu.org/DebuggingProgramCrash and then let me know if
when the next time the decorations disappear you get a
unity_window_decorator_.crash file in /var/crash? If so, we can
retrace it and I can try and figure out what's going on

PS: If you have any applications that particularly aggravate this
problem let me know

On Tue, May 31, 2011 at 11:17 PM, yurx cherio <772...@bugs.launchpad.net> wrote:
> Every now and then I have to go to Compiz configuration and uncheck
> "Windows Decorations" then wait a few seconds then check it back (which
> I guess is essentially the same as running compiz-decorator). This
> brings window captions back.
>
> I run gnome on 64bit Natty.
>
> --
> You received this bug notification because you are a member of compiz
> packagers, which is subscribed to compiz in Ubuntu.
> https://bugs.launchpad.net/bugs/77
>
> Title:
>  window decoration disappear
>
> ___
> Mailing list: https://launchpad.net/~compiz
> Post to     : compiz@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~compiz
> More help   : https://help.launchpad.net/ListHelp
>



-- 
Sam Spilsbury

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 778490] Re: Random logout after upgrading to Natty Narwhal 11.04

2011-05-31 Thread Danny Harvison
Still happening! Very frustrating and compounded by the fact that it
appears that the dev team is doing nothing to resolve it.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/778490

Title:
  Random logout after upgrading to Natty Narwhal 11.04

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 772222] Re: window decoration disappear

2011-05-31 Thread yurx cherio
Every now and then I have to go to Compiz configuration and uncheck
"Windows Decorations" then wait a few seconds then check it back (which
I guess is essentially the same as running compiz-decorator). This
brings window captions back.

I run gnome on 64bit Natty.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/77

Title:
  window decoration disappear

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 753144] Re: focused, or maximized windows blank

2011-05-31 Thread Vassilis Vatikiotis
Same here. Integrated Nvidia GeForce 6200. It happens with the nvidia-
current driver as well as the 173 one.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/753144

Title:
  focused, or maximized windows blank

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 691070] Re: compiz assert failure: *** glibc detected *** compiz: corrupted double-linked list: 0x000000000195ae60 ***

2011-05-31 Thread jedioetzi
same for me on natty:

*** glibc detected *** compiz: corrupted double-linked list: 0x00a9c930 
***
=== Backtrace: =
/lib/x86_64-linux-gnu/libc.so.6(+0x77fb1)[0x7f29c6eabfb1]
/lib/x86_64-linux-gnu/libc.so.6(+0x78528)[0x7f29c6eac528]
/lib/x86_64-linux-gnu/libc.so.6(cfree+0x73)[0x7f29c6eb08e3]
/usr/lib/fglrx/dri/fglrx_dri.so(+0x2c965e)[0x7f29c10d165e]
/usr/lib/fglrx/dri/fglrx_dri.so(+0x18163db)[0x7f29c261e3db]
/usr/lib/fglrx/dri/fglrx_dri.so(+0x1688309)[0x7f29c2490309]
/usr/lib/fglrx/dri/fglrx_dri.so(+0x19ae92)[0x7f29c0fa2e92]
=== Memory map: 
0040-0046f000 r-xp  08:01 3674698
/usr/bin/compiz
0066e000-0066f000 r--p 0006e000 08:01 3674698
/usr/bin/compiz
0066f000-0067 rw-p 0006f000 08:01 3674698
/usr/bin/compiz
0067-00671000 rw-p  00:00 0 
00a93000-01264000 rw-p  00:00 0  [heap]
7f29b6fb4000-7f29b6fd7000 r-xp  08:01 1706640
/usr/lib/compiz/libscale.so
7f29b6fd7000-7f29b71d7000 ---p 00023000 08:01 1706640
/usr/lib/compiz/libscale.so
7f29b71d7000-7f29b71d9000 r--p 00023000 08:01 1706640
/usr/lib/compiz/libscale.so
7f29b71d9000-7f29b71da000 rw-p 00025000 08:01 1706640
/usr/lib/compiz/libscale.so
7f29b71da000-7f29b71ea000 r-xp  08:01 1706620
/usr/lib/compiz/libfade.so
7f29b71ea000-7f29b73ea000 ---p 0001 08:01 1706620
/usr/lib/compiz/libfade.so
7f29b73ea000-7f29b73eb000 r--p 0001 08:01 1706620
/usr/lib/compiz/libfade.so
7f29b73eb000-7f29b73ec000 rw-p 00011000 08:01 1706620
/usr/lib/compiz/libfade.so
7f29b73ec000-7f29b740c000 r-xp  08:01 1706701
/usr/lib/compiz/libstaticswitcher.so
7f29b740c000-7f29b760c000 ---p 0002 08:01 1706701
/usr/lib/compiz/libstaticswitcher.so
7f29b760c000-7f29b760d000 r--p 0002 08:01 1706701
/usr/lib/compiz/libstaticswitcher.so
7f29b760d000-7f29b760e000 rw-p 00021000 08:01 1706701
/usr/lib/compiz/libstaticswitcher.so
7f29b760e000-7f29b764a000 r-xp  08:01 1706720
/usr/lib/compiz/libezoom.so
7f29b764a000-7f29b7849000 ---p 0003c000 08:01 1706720
/usr/lib/compiz/libezoom.so
7f29b7849000-7f29b784c000 r--p 0003b000 08:01 1706720
/usr/lib/compiz/libezoom.so
7f29b784c000-7f29b784d000 rw-p 0003e000 08:01 1706720
/usr/lib/compiz/libezoom.so
7f29b784d000-7f29b7867000 r-xp  08:01 1706735
/usr/lib/compiz/libworkarounds.so
7f29b7867000-7f29b7a67000 ---p 0001a000 08:01 1706735
/usr/lib/compiz/libworkarounds.so
7f29b7a67000-7f29b7a68000 r--p 0001a000 08:01 1706735
/usr/lib/compiz/libworkarounds.so
7f29b7a68000-7f29b7a69000 rw-p 0001b000 08:01 1706735
/usr/lib/compiz/libworkarounds.so
7f29b7a69000-7f29b7a85000 r-xp  08:01 1706715
/usr/lib/compiz/libexpo.so
7f29b7a85000-7f29b7c84000 ---p 0001c000 08:01 1706715
/usr/lib/compiz/libexpo.so
7f29b7c84000-7f29b7c85000 r--p 0001b000 08:01 1706715
/usr/lib/compiz/libexpo.so
7f29b7c85000-7f29b7c86000 rw-p 0001c000 08:01 1706715
/usr/lib/compiz/libexpo.so
7f29b7c86000-7f29b7ccb000 r-xp  08:01 1706656
/usr/lib/compiz/libanimationaddon.so
7f29b7ccb000-7f29b7eca000 ---p 00045000 08:01 1706656
/usr/lib/compiz/libanimationaddon.so
7f29b7eca000-7f29b7ed2000 r--p 00044000 08:01 1706656
/usr/lib/compiz/libanimationaddon.so
7f29b7ed2000-7f29b7ed3000 rw-p 0004c000 08:01 1706656
/usr/lib/compiz/libanimationaddon.so
7f29b7ed3000-7f29b7ef7000 r-xp  08:01 1706713
/usr/lib/compiz/libwall.so
7f29b7ef7000-7f29b80f7000 ---p 00024000 08:01 1706713
/usr/lib/compiz/libwall.so
7f29b80f7000-7f29b80f8000 r--p 00024000 08:01 1706713
/usr/lib/compiz/libwall.so
7f29b80f8000-7f29b80f9000 rw-p 00025000 08:01 1706713
/usr/lib/compiz/libwall.so
7f29b80f9000-7f29b8166000 r-xp  08:01 1573308
/usr/lib/libGLU.so.1.3.071000
7f29b8166000-7f29b8365000 ---p 0006d000 08:01 1573308
/usr/lib/libGLU.so.1.3.071000
7f29b8365000-7f29b8367000 r--p 0006c000 08:01 1573308
/usr/lib/libGLU.so.1.3.071000
7f29b8367000-7f29b8368000 rw-p 0006e000 08:01 1573308
/usr/lib/libGLU.so.1.3.071000
7f29b8368000-7f29b83d8000 r-xp  08:01 1706731
/usr/lib/compiz/libanimation.so
7f29b83d8000-7f29b85d8000 ---p 0007 08:01 1706731
/usr/lib/compiz/libanimation.so
7f29b85d8000-7f29b85e7000 r--p 0007 08:01 170673

Re: [Compiz] [Bug 742671] Re: Expo scaling far from optimal, wastes a lot of space

2011-05-31 Thread Sam "SmSpillaz" Spilsbury
We had to add a hack to ensure that the scale view doesn't cover the
launcher. It's possible to distro patch to set a scale area exclusion
zone, but that will be difficult since it's a new feature.

On Tue, Mar 29, 2011 at 11:32 PM, Omer Akram  wrote:
> Totally compiz thing, Sam could you please comment?
>
> --
> You received this bug notification because you are a member of Unity
> Bugs, which is subscribed to unity in Ubuntu.
> https://bugs.launchpad.net/bugs/742671
>
> Title:
>  Expo scaling far from optimal, wastes a lot of space
>
> Status in Unity:
>  New
> Status in “unity” package in Ubuntu:
>  New
>
> Bug description:
>  Binary package hint: unity
>
>  Steps to reproduce:
>  Open 3 PDF documents of your choice. Click on the evince icon on the 
> launcher.
>
>  Expected behavior:
>  Windows are nicely spread out over the scree. Optimally: Window titles 
> displayed below to allow for proper identification of the windows.
>
>  Actual behavior:
>  A lot of space is wasted. See attached screenshot.
>
>  ProblemType: Bug
>  DistroRelease: Ubuntu 11.04
>  Package: unity 3.6.8-0ubuntu3
>  ProcVersionSignature: Ubuntu 2.6.38-7.38-generic 2.6.38
>  Uname: Linux 2.6.38-7-generic i686
>  NonfreeKernelModules: wl
>  Architecture: i386
>  CompizPlugins: 
> [core,bailer,detection,composite,opengl,decor,gnomecompat,mousepoll,grid,vpswitch,place,compiztoolbox,move,resize,snap,regex,wall,session,animation,workarounds,expo,ezoom,staticswitcher,fade,scale,unityshell]
>  Date: Fri Mar 25 19:02:37 2011
>  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110122)
>  ProcEnviron:
>   LANGUAGE=en_US:en
>   LANG=en_US.UTF-8
>   SHELL=/bin/bash
>  SourcePackage: unity
>  UpgradeStatus: Upgraded to natty on 2011-03-25 (0 days ago)
>


-- 
Sam Spilsbury

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/742671

Title:
  Expo scaling far from optimal, wastes a lot of space

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 742671] Re: Expo scaling far from optimal, wastes a lot of space

2011-05-31 Thread Didier Roche
** Package changed: ubuntu => compiz (Ubuntu)

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/742671

Title:
  Expo scaling far from optimal, wastes a lot of space

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 742671] [NEW] Expo scaling far from optimal, wastes a lot of space

2011-05-31 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Binary package hint: unity

Steps to reproduce:
Open 3 PDF documents of your choice. Click on the evince icon on the launcher.

Expected behavior:
Windows are nicely spread out over the scree. Optimally: Window titles 
displayed below to allow for proper identification of the windows.

Actual behavior:
A lot of space is wasted. See attached screenshot.

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: unity 3.6.8-0ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-7.38-generic 2.6.38
Uname: Linux 2.6.38-7-generic i686
NonfreeKernelModules: wl
Architecture: i386
CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,gnomecompat,mousepoll,grid,vpswitch,place,compiztoolbox,move,resize,snap,regex,wall,session,animation,workarounds,expo,ezoom,staticswitcher,fade,scale,unityshell]
Date: Fri Mar 25 19:02:37 2011
InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110122)
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: unity
UpgradeStatus: Upgraded to natty on 2011-03-25 (0 days ago)

** Affects: ayatana-design
 Importance: Undecided
 Status: New

** Affects: unity
 Importance: Undecided
 Status: Incomplete

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


** Tags: apport-bug i386 natty needs-design running-unity unity-2d
-- 
Expo scaling far from optimal, wastes a lot of space
https://bugs.launchpad.net/bugs/742671
You received this bug notification because you are a member of compiz 
packagers, which is subscribed to compiz in Ubuntu.

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 778490] Re: Random logout after upgrading to Natty Narwhal 11.04

2011-05-31 Thread ravenwritingdesk
I have this issue on an ASUS U43F amd64.  It happens at least twice a
day, has happened mostly during use of FIrefox, or when I've had Firefox
running in the background.  I like the new layout of Ubuntu with Unity,
so I'm hoping this can be resolved.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/778490

Title:
  Random logout after upgrading to Natty Narwhal 11.04

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 789498] Re: unity-window-decorator crashes when a java application closes a dialog window - compiz crashed with SIGSEGV in pthread_mutex_lock()

2011-05-31 Thread mtoader
** Attachment added: "unity-window-decorator-bugreport.txt"
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/789498/+attachment/2148999/+files/unity-window-decorator-bugreport.txt

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/789498

Title:
  unity-window-decorator crashes when a java application closes a dialog
  window - compiz crashed with SIGSEGV in pthread_mutex_lock()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 760814] Re: Compiz Very Slow and Choppy in Natty Classic

2011-05-31 Thread Andrea Lazzarotto (Lazza)
Sorry, I forgot to mention that my card is a Nvidia GeForce 8600M GT.
BTW uninstalling the scrollbars didn't work.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/760814

Title:
  Compiz Very Slow and Choppy in Natty Classic

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 760814] Re: Compiz Very Slow and Choppy in Natty Classic

2011-05-31 Thread Andrea Lazzarotto (Lazza)
I'm using Ubuntu 11.04 with Unity, before with the Nvidia driver shipped
with the Natty repos and now with the driver from Ubuntu X-SWAT team.
The issues are the same. But there's some very strange thing: if I
MAXIMIZE glxgears, they work very good, if I keep the window, they don't
turn (or sometimes do, but very laggy). I'm now trying to remove the
overlay scrollbars, since the other fixes (vblank and auto-detect) are
not working.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/760814

Title:
  Compiz Very Slow and Choppy in Natty Classic

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 758248] Re: memory leaking in compiz

2011-05-31 Thread Achim
I am not sure if the problem has been fixed. Memory usage is still growing for 
me.
Please see attached file (memory_usage.svg).

With this command
$ ps -C compiz -o rsz
I get the information of memory usage. I have monitored memory usage every 30 
seconds.

nux-tools:
  Installiert: 0.9.48-0ubuntu1.1
  Kandidat:0.9.48-0ubuntu1.1
  Versionstabelle:
 *** 0.9.48-0ubuntu1.1 0
500 http://archive.ubuntu.com/ubuntu/ natty-proposed/main amd64 Packages
100 /var/lib/dpkg/status
 0.9.48-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ natty-updates/main amd64 Packages
 0.9.46-0ubuntu4 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages
achim@achim-MS-7521:~/Arbeitsfläche$ apt-cache policy nux-tools unity compiz
compiz:
  Installiert: 1:0.9.4+bzr20110415-0ubuntu2
  Kandidat:1:0.9.4+bzr20110415-0ubuntu2
  Versionstabelle:
 *** 1:0.9.4+bzr20110415-0ubuntu2 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages
100 /var/lib/dpkg/status
unity:
  Installiert: 3.8.14-0ubuntu1~natty1
  Kandidat:3.8.14-0ubuntu1~natty1
  Versionstabelle:
 *** 3.8.14-0ubuntu1~natty1 0
500 http://archive.ubuntu.com/ubuntu/ natty-proposed/main amd64 Packages
100 /var/lib/dpkg/status
 3.8.12-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ natty-updates/main amd64 Packages
 3.8.10-0ubuntu2 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages
nux-tools:
  Installiert: 0.9.48-0ubuntu1.1
  Kandidat:0.9.48-0ubuntu1.1
  Versionstabelle:
 *** 0.9.48-0ubuntu1.1 0
500 http://archive.ubuntu.com/ubuntu/ natty-proposed/main amd64 Packages
100 /var/lib/dpkg/status
 0.9.48-0ubuntu1 0
500 http://archive.ubuntu.com/ubuntu/ natty-updates/main amd64 Packages
 0.9.46-0ubuntu4 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages


** Attachment added: "memory_usage.svg"
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/758248/+attachment/2148765/+files/memory_usage.svg

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/758248

Title:
  memory leaking in compiz

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 737792] Re: compiz crashed with SIGABRT in Glib::exception_handlers_invoke()

2011-05-31 Thread raymulder
Have not experienced this also for a month or so, have downloaded many
updates so it seems to be fixed for me.
Mark it as fixed and we can see what else comes up in time.
Regards


2011/5/31 Loïc Molinari 

> Glibmm dispatches GMainLoop's sources inside an exception handler. The
> problem here is that a std::bad_alloc exception is thrown by a callback
> and GLibmm aborts the Compiz process.
>
> Going back 1.5 months back in the Unity code using bzr, I can easily
> reproduce that issue, but with the current code I wasn't able to
> reproduce it. I think this bug's been fixed by someone who modified the
> code throwing the std::bad_alloc exception. This bug hasn't received any
> update nor duplicate since more than 1.5 months.
>
> Shouldn't we mark it as fixed?
>
> --
> You received this bug notification because you are a direct subscriber
> of a duplicate bug (761492).
> https://bugs.launchpad.net/bugs/737792
>
> Title:
>  compiz crashed with SIGABRT in Glib::exception_handlers_invoke()
>
> Status in Unity:
>  Confirmed
> Status in “compiz” package in Ubuntu:
>  Confirmed
> Status in “unity” package in Ubuntu:
>  Confirmed
>
> Bug description:
>  Binary package hint: compiz
>
>  After i've installed my graphics driver the compiz crashed!
>  I installed the Nvidia's 3d experimental driver.
>  Thanks, the ubuntu 11.04 is becoming very bealtiful. Thanks very much!!
>
>  ProblemType: Crash
>  DistroRelease: Ubuntu 11.04
>  Package: compiz-core 1:0.9.4-0ubuntu7
>  ProcVersionSignature: Ubuntu 2.6.38-7.35-generic 2.6.38
>  Uname: Linux 2.6.38-7-generic i686
>  Architecture: i386
>  CompizPlugins:
> [core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,staticswitcher,resize,fade,unitymtgrabhandles,scale,session,unityshell]
>  CompositorRunning: None
>  Date: Fri Mar 18 16:57:43 2011
>  DistUpgraded: Fresh install
>  DistroCodename: natty
>  DistroVariant: ubuntu
>  ExecutablePath: /usr/bin/compiz
>  GraphicsCard:
>   nVidia Corporation G96 [GeForce 9400 GT] [10de:0641] (rev a1) (prog-if 00
> [VGA controller])
> Subsystem: Device [1acc:915f]
>  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110301.7)
>  InstallationMedia_: Ubuntu 11.04 "Natty Narwhal" - Alpha i386 (20110301.7)
>  MachineType: System manufacturer System Product Name
>  ProcCmdline: compiz
>  ProcEnviron:
>   LANGUAGE=pt_BR:en
>   LANG=pt_BR.UTF-8
>   SHELL=/bin/bash
>  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-7-generic
> root=UUID=5a0df536-0aab-4b4e-a65f-0a88abfaceeb ro quiet splash vt.handoff=7
>  ProcVersionSignature_: Ubuntu 2.6.38-7.35-generic 2.6.38
>  Renderer: Unknown
>  Signal: 6
>  SourcePackage: compiz
>  StacktraceTop:
>   Glib::exception_handlers_invoke() () from /usr/lib/libglibmm-2.4.so.1
>   Glib::Source::dispatch_vfunc(_GSource*, int (*)(void*), void*) () from
> /usr/lib/libglibmm-2.4.so.1
>   g_main_context_dispatch () from /lib/libglib-2.0.so.0
>   ?? () from /lib/libglib-2.0.so.0
>   g_main_loop_run () from /lib/libglib-2.0.so.0
>  Title: compiz crashed with SIGABRT in Glib::exception_handlers_invoke()
>  UpgradeStatus: No upgrade log present (probably fresh install)
>  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare
>  dmi.bios.date: 05/20/2009
>  dmi.bios.vendor: American Megatrends Inc.
>  dmi.bios.version: 0402
>  dmi.board.asset.tag: To Be Filled By O.E.M.
>  dmi.board.name: P5KPL-AM-CKD-VISUM-SI
>  dmi.board.vendor: ASUSTeK Computer INC.
>  dmi.board.version: x.xx
>  dmi.chassis.asset.tag: Asset-1234567890
>  dmi.chassis.type: 3
>  dmi.chassis.vendor: Chassis Manufacture
>  dmi.chassis.version: Chassis Version
>  dmi.modalias:
> dmi:bvnAmericanMegatrendsInc.:bvr0402:bd05/20/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5KPL-AM-CKD-VISUM-SI:rvrx.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
>  dmi.product.name: System Product Name
>  dmi.product.version: System Version
>  dmi.sys.vendor: System manufacturer
>  version.compiz: compiz 1:0.9.4-0ubuntu7
>  version.libdrm2: libdrm2 2.4.23-1ubuntu3
>  version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.1-0ubuntu3
>  version.xserver-xorg: xserver-xorg 1:7.6~3ubuntu11
>  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
>  version.xserver-xorg-video-intel: xserver-xorg-video-intel
> 2:2.14.0-4ubuntu3
>  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau
> 1:0.0.16+git20110107+b795ca6e-0ubuntu6
>
> To unsubscribe from this bug, go to:
> https://bugs.launchpad.net/unity/+bug/737792/+subscribe
>

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/737792

Title:
  compiz crashed with SIGABRT in Glib::exception_handlers_invoke()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.ne

[Compiz] [Bug 600867] Re: Compiz fails to load when screen width == maxTextureSize

2011-05-31 Thread Brian Starkey
I'm afraid I have got a new system (with an nVidia card) so won't be
able to do any more testing on this bug.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/600867

Title:
  Compiz fails to load when screen width == maxTextureSize

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 737792] Re: compiz crashed with SIGABRT in Glib::exception_handlers_invoke()

2011-05-31 Thread Loïc Molinari
Glibmm dispatches GMainLoop's sources inside an exception handler. The
problem here is that a std::bad_alloc exception is thrown by a callback
and GLibmm aborts the Compiz process.

Going back 1.5 months back in the Unity code using bzr, I can easily
reproduce that issue, but with the current code I wasn't able to
reproduce it. I think this bug's been fixed by someone who modified the
code throwing the std::bad_alloc exception. This bug hasn't received any
update nor duplicate since more than 1.5 months.

Shouldn't we mark it as fixed?

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/737792

Title:
  compiz crashed with SIGABRT in Glib::exception_handlers_invoke()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 758248] Re: memory leaking in compiz

2011-05-31 Thread Michael Vogt
The fix  in natty-proposed works for me, since I installed it a couple
of hours ago I see stable memory usage with unity.

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/758248

Title:
  memory leaking in compiz

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 737792] Re: compiz crashed with SIGABRT in Glib::exception_handlers_invoke()

2011-05-31 Thread David Barth
** Changed in: unity
Milestone: 3.8.14 => 3.8.16

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/737792

Title:
  compiz crashed with SIGABRT in Glib::exception_handlers_invoke()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 740126] Re: Disabling an output can cause vblank events to be missed

2011-05-31 Thread David Barth
Wow, great news. I'm moving the unity part of the bug to SRU2 to keep it
on the radar. Thanks for looking into this.

** Changed in: unity
Milestone: 3.8.14 => 3.8.16

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/740126

Title:
  Disabling an output can cause vblank events to be missed

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 771737] Re: unity ALT-tab loses usb-creator once it is installing

2011-05-31 Thread David Barth
Worth investigating for SRU2, as there is a reproducible test case.

** Changed in: unity
Milestone: 3.8.14 => None

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/771737

Title:
  unity ALT-tab loses usb-creator once it is installing

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 711231] Re: compiz crashed with SIGSEGV in __pthread_mutex_lock()

2011-05-31 Thread David Barth
** Changed in: unity
Milestone: 3.8.14 => 3.8.16

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/711231

Title:
  compiz crashed with SIGSEGV in __pthread_mutex_lock()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 743390] Re: compiz crashed with SIGSEGV in CompWindow::updateWindowOutputExtents()

2011-05-31 Thread David Barth
** Changed in: unity
Milestone: 3.8.14 => 3.8.16

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/743390

Title:
  compiz crashed with SIGSEGV in CompWindow::updateWindowOutputExtents()

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 753144] Re: focused, or maximized windows blank

2011-05-31 Thread David Barth
** Changed in: unity
Milestone: 3.8.14 => None

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/753144

Title:
  focused, or maximized windows blank

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 771391] Re: Unity launcher gets visible while screensaver is active

2011-05-31 Thread David Barth
** Changed in: unity
Milestone: 3.8.14 => 3.8.16

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/771391

Title:
  Unity launcher gets visible while screensaver is active

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 753369] Re: compiz artifacts in chromium, xchat, opera... you name it

2011-05-31 Thread David Barth
Putting back in the backlog. Even if there are still rare occurences of
the issue, I see no reproducible way of triggering the problem, to even
start thinking about a resolution.

** Changed in: unity
Milestone: 3.8.14 => backlog

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/753369

Title:
  compiz artifacts in chromium, xchat, opera... you name it

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 727143] Re: unity-window-decorator crashes with SIGSEGV when closing Java windows

2011-05-31 Thread Sam "SmSpillaz" Spilsbury
On Fri, May 27, 2011 at 8:27 PM, frank rothmann  wrote:
> I have the same problem with rubymine, intellij idea, dbviz and a couple
> of other java apps. I can't see that this is an "importance low"
> problem. After the compiz --replace comand I had two times a complete
> system crash. The LTS-version was absolutely stable with the same apps.

Hm, can you give me any examples from the software center of
applications which cause this crash? I've seen it a few times myself,
but i can't reproduce it reliably

>
> Please, fix the problem!
>
> --
> You received this bug notification because you are a member of compiz
> packagers, which is subscribed to compiz in Ubuntu.
> https://bugs.launchpad.net/bugs/727143
>
> Title:
>  unity-window-decorator crashes with SIGSEGV when closing Java windows
>
> ___
> Mailing list: https://launchpad.net/~compiz
> Post to     : compiz@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~compiz
> More help   : https://help.launchpad.net/ListHelp
>


-- 
Sam Spilsbury

-- 
You received this bug notification because you are a member of compiz
packagers, which is subscribed to compiz in Ubuntu.
https://bugs.launchpad.net/bugs/727143

Title:
  unity-window-decorator crashes with SIGSEGV when closing Java windows

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp