[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2017-05-25 Thread Daniel van Vugt
Thank you for reporting this bug to Ubuntu.
Ubuntu 12.04 (precise) reached end-of-life on April 28, 2017.

See this document for currently supported Ubuntu releases:
https://wiki.ubuntu.com/Releases 

We appreciate that this bug may be old and you might not be interested
in discussing it any more. But if you are then please upgrade to the
latest Ubuntu version and re-test.

** Changed in: ubuntu-themes (Ubuntu)
   Status: New => Incomplete

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2014-02-21 Thread Matthew Paul Thomas
** Project changed: light-themes = ubuntu-themes (Ubuntu)

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2014-02-21 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: ubuntu-themes (Ubuntu)
   Status: New = Confirmed

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-11-06 Thread Riccardo 'c10ud'
Ok, since I wanted to run gtk3 in Precise, I uploaded a modified version
of light-themes in the emesene-stable PPA.

https://launchpad.net/~emesene-team/+archive/emesene-
stable/+build/3959490

This version differs from the precise-proposed one: it removes the
transition properties that make the program crash.

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-17 Thread Martin Pitt
** Changed in: pygobject (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-14 Thread Riccardo 'c10ud'
with Precise's light-themes package (reproducible crash):

$ cat /usr/share/themes/Ambiance/gtk-3.0/gtk-widgets.css | grep transition
transition: 100ms ease-in-out;
 transition: 750ms linear loop;
transition: 0ms ease-in-out;
transition: 0ms ease-in-out;

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-14 Thread Riccardo 'c10ud'
commenting out:
 /*transition: 100ms ease-in-out;*/

appears to fix (or workaround the issue).
The relevant part:

GtkComboBox,
.button {
background-image: -gtk-gradient (linear, left top, left bottom,
 from (shade (@button_bg_color, 1.1)),
 to (shade (@button_bg_color, 0.9)));
border-radius: 3px;
border-style: solid;

color: @fg_color;
text-shadow: 0 1 alpha (shade (@button_bg_color, 1.25), 0.4);

/*transition: 100ms ease-in-out;*/

-unico-border-gradient: -gtk-gradient (linear, left top, left bottom,
   from (shade (@button_bg_color, 
0.85)),
   to (shade (@button_bg_color, 0.67)));
-unico-glow-color: shade (@button_bg_color, 1.14);
-unico-glow-radius: 6;
-unico-inner-stroke-gradient: -gtk-gradient (linear, left top, left bottom,
 from (shade (@button_bg_color, 
1.16)),
 to (shade (@button_bg_color, 
1.015)));
-unico-inner-stroke-width: 1px;
}

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-14 Thread Riccardo 'c10ud'
Needs to be tested in Quantal - add this to your gtk-widgets.css:

GtkComboBox,
.button {
transition: 100ms ease-in-out;
}

And see if issue persists

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-14 Thread Riccardo 'c10ud'
** Also affects: gtk
   Importance: Undecided
   Status: New

** Also affects: light-themes
   Importance: Undecided
   Status: New

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-14 Thread Riccardo 'c10ud'
transition: 0ms ease-in-out;
transition: 0ms ease-in-out;

Needs to be commented out as well.

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

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

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-09-12 Thread Riccardo 'c10ud'
Cimi (thanks!) suggests searching for transition in gtk-widgets.css and make 
some tests with Precise-stock theme.
He says it's probably a bug in gtk regarding that thing.

For comparison, here's the relevant part in Quantal's theme:
$ cat /usr/share/themes/Ambiance/gtk-3.0/gtk-widgets.css | grep transition
 transition: 750ms linear loop;

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-08-30 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-08-30 Thread Riccardo 'c10ud'
I installed Quantal's theme and theme engine in Precise and i cannot
reproduce the issue anymore.

However with Precise's stock theme the segfault can still be reproduced.

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-05-22 Thread c10ud
** Attachment added: bt full in gdb with apport-retrace
   https://bugs.launchpad.net/bugs/1002792/+attachment/3157535/+files/btfull

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-05-22 Thread c10ud
console shows:

Gtk:ERROR:/build/buildd/gtk+3.0-3.4.2/./gtk/gtkstylecontext.c:739:timeline_finished_cb:
assertion failed: (info != NULL)

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-05-22 Thread c10ud
ProblemType: Crash
Architecture: amd64
Date: Tue May 22 12:03:15 2012
DistroRelease: Ubuntu 12.04
ExecutablePath: /usr/bin/python2.7

ProcEnviron:
 TERM=xterm
 SHELL=/bin/bash
 PATH=(custom, no user)
 LANG=en_US.UTF-8

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-05-22 Thread c10ud
** Attachment added: some apport info
   
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+attachment/3157538/+files/apport

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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


[Bug 1002792] Re: emesene crashes with assertion failed in gtkstylecontext.c

2012-05-22 Thread c10ud
how to reproduce:

[12:42] c10ud wget https://github.com/emesene/emesene/zipball/master
[12:42] c10ud extract
[12:42] c10ud USE_GI=1 ./emesene
[12:43] c10ud then select dummy session, put some random acc/pwd and connect
[12:44] c10ud since it doesn't happen everytime you can check autologin and 
ctrl+c from terminal when you see the fake contact list (seeing the contact 
list means bug hasn't been triggered)

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

Title:
  emesene crashes with assertion failed in gtkstylecontext.c

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pygobject/+bug/1002792/+subscriptions

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