~om26er/ubuntu/natty/unity/unity-fix-769703-3

« back to all changes in this revision

Viewing changes to src/LauncherIcon.cpp

  • Committer: Didier Roche
  • Date: 2011-05-26 16:15:21 UTC
  • mfrom: (100.1.56 upstream)
  • Revision ID: didier.roche@canonical.com-20110526161521-m3f6tg1xb0g1vn0k
* New upstream bug-fix release.
  - In a dual monitor setup with different resolutions, Unity places windows
    in the "dead zone" (LP: #752098)
  - Left pixel of launcher is not clickable on session start (LP: #758026)
  - unity crashed with AttributeError in reset_unity_compiz_profile(): 'str'
    object has no attribute 'get_string' (LP: #737320)
  - unity --reset crashes with NameError (LP: #774280)
  - Bottom icon on launcher tilts when it maybe shouldn't if icons fill
    launcher nearly exactly (LP: #728949)
  - Dodge active window - launcher should not show when modal dialog is
    opened (LP: #718185)
  - Unity maximizes windows that don't support resize on launch (LP: #769781)
  - compiz crashed with SIGSEGV in sigc::signal_base::impl() (LP: #762801)
  - inactive menus becomes brighter on sub-sequent clicks (LP: #733740)
  - Unity crashes when dynamic quicklist dbusmenu contains a hidden menuitem.
    (LP: #759174)
  - Opening quicklist with launcher keynav returns focus to previous window
    (LP: #750781)
* debian/patches/01_add_scp_to_systray.patch:
  - remove, upstream now

Show diffs side-by-side

added added

removed removed

Lines of Context:
520
520
    
521
521
    const gchar* type = dbusmenu_menuitem_property_get (menu_item, DBUSMENU_MENUITEM_PROP_TYPE);
522
522
    const gchar* toggle_type = dbusmenu_menuitem_property_get (menu_item, DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE);
 
523
    gboolean prop_visible = dbusmenu_menuitem_property_get_bool (menu_item, DBUSMENU_MENUITEM_PROP_VISIBLE);
 
524
    
 
525
    // Skip this item, it is invisible right now.
 
526
    if (!prop_visible)
 
527
      continue;
523
528
 
524
529
    if (g_strcmp0 (type, DBUSMENU_CLIENT_TYPES_SEPARATOR) == 0)
525
530
    {