~shnatsel/unity/old-school-dash

« back to all changes in this revision

Viewing changes to src/PanelView.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2011-04-14 22:03:42 UTC
  • mfrom: (1.1.41 upstream)
  • Revision ID: james.westby@ubuntu.com-20110414220342-4kp036kzlljxxx23
Tags: 3.8.8-0ubuntu1
* New upstream release.
  - Empty desktop after login (LP: #687660)
  - compiz crashed with SIGSEGV in nux::Area::InitiateResizeLayout()
    (LP: #757709)
  - compiz crashed on initial load of Java Citrix Client/Inkscape in
    PrivateWindow::processMap() (LP: #758307)
  - Sometimes dragging down from the panel just stops working (LP: #750155)
  - Ensure Unity prioritises icon loading from Unity-icon-theme
    (LP: #750471)
  - text truncated in Dash. Empty search from Applications or Files lense
    returns “Your search did not” due to cut off label (LP: #757362)
  - should list PlacesGroup.cpp in POTFILES.in (LP: #757663)
  - Launcher intellhide stuck after edge reveal (LP: #757810)
  - unity-preferences doesn't load translations (LP: #759682)
  - dynamic quicklists are not working (LP: #729074)
  - with second monitor, first monitor does not show nautilus
    application/global menu when displaying desktop (LP: #743149)
  - Launcher - The Workspace, File Lens, App Lens and Trash Launcher icons
    need to be rendered correctly (LP: #745555)
  - the launcher background gets dimmed after icons dnd (LP: #747304)
  - Numpad 'Enter' does not work on unity launcher when navigating through
    keyboard (LP: #760003)
  - Launcher shouldn't hover when being in the dash (LP: #760770)
  - Launcher displays key shortcuts while holding Super while the dash is
    open but the shortcuts are unfunctional (LP: #760728)
  - Running/active indicators point to space between launcher icons for
    folded icons (LP: #703067)
  - user-trash.svg and user-trash-full.svg not lens grayscale versions
    (LP: #741804)
  - code-cleanup: unregistered any established ubus-interests (LP: #757588)
  - dropdown box in places search bar does not resize when font size changes
    (LP: #759763)
  - [FFE] Centered layout for expo plugin (LP: #754689)
  - Unity launcher icons tooltips do not disappear when swiching workspaces
    (LP: #744795)
  - Dash - Update Dash scroll bar (LP: #750374)
  - Letters cut off at the end in the applications window  (LP: #753083)
* debian/control:
  - build-dep on grail/geis with version bumped
* 01_dont_dep_on_latest_geis_grail.patch:
  - not needed anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
  _on_entry_activate_request_connection.disconnect ();
86
86
  _on_entry_activated_connection.disconnect ();
87
87
  _on_synced_connection.disconnect ();
88
 
  
 
88
 
 
89
  _layout->UnReference ();
 
90
  _home_button->UnReference ();
 
91
  _menu_view->UnReference ();
 
92
  _tray->UnReference ();
89
93
  _style->UnReference ();
 
94
 
90
95
  delete _remote;
91
96
  delete _bg_layer;
92
97
}
127
132
void
128
133
PanelView::Draw (nux::GraphicsEngine& GfxContext, bool force_draw)
129
134
{
 
135
  UpdateBackground ();
 
136
 
130
137
  GfxContext.PushClippingRectangle (GetGeometry() );
131
138
 
132
139
  gPainter.PushDrawLayer (GfxContext, GetGeometry (), _bg_layer);
164
171
long
165
172
PanelView::PostLayoutManagement (long LayoutResult)
166
173
{
167
 
  // I'm imagining this is a good as time as any to update the background
168
 
  UpdateBackground ();
169
 
 
170
174
  return nux::View::PostLayoutManagement (LayoutResult);
171
175
}
172
176