~ubuntu-branches/ubuntu/precise/unity-2d/precise-updates

« back to all changes in this revision

Viewing changes to libunity-2d-private/src/panelstyle.cpp

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-09-15 11:43:52 UTC
  • mfrom: (1.1.22 upstream)
  • Revision ID: package-import@ubuntu.com-20110915114352-4r8z8vbm4s4v9q6h
Tags: 4.8.0-0ubuntu1
* New upstream release
  - [window management] Alt tab does not switch to the desired application
    but instead set the urgency flag on the window (LP: #735205)
  - [dash] search field default text not cleared immediately when using
    chinese input method (LP: #745246)
  - [dash] Apps lens shows no result by default (LP: #834571)
  - unity-2d-panel crashed with SIGSEGV in
    IndicatorsWidget::onEntryRemoved() (LP: #846836)
  - [panel] graphics corruption in top line of pixels (LP: #846335)
  - Repeated indicators in unity-2d panel when second screen added
    (LP: #846441)
  - [dash] Lens navigation bar (buttons on lower edge of dash window) is
    accessible (LP: #826560)
  - [dash] Category filters is sorted according to their english names, even
    when another language is used (LP: #838023)

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
        CairoUtils::SurfacePointer surface(CairoUtils::createSurfaceForQImage(&image));
80
80
        CairoUtils::Pointer cr(cairo_create(surface.data()));
81
81
        gtk_render_background(m_styleContext.data(), cr.data(), 0, 0, image.width(), image.height());
 
82
        gtk_render_frame(m_styleContext.data(), cr.data(), 0, 0, image.width(), image.height());
82
83
        return QBrush(image);
83
84
    }
84
85