~ubuntu-branches/ubuntu/trusty/kde-workspace/trusty

« back to all changes in this revision

Viewing changes to plasma/generic/applets/system-monitor/plotter.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2014-01-09 10:16:29 UTC
  • mfrom: (1.6.4)
  • Revision ID: package-import@ubuntu.com-20140109101629-i07ge8av1l6wrbci
Tags: 4:4.11.5-0ubuntu1
* New upstream release 
  - refresh kubuntu_kdewallpapers_install.diff 
  - drop upstream_Fix-traceback-in-Python-runner-plugins.patch and
    upstream_Do-not-crash-when-failing-to-load-a-theme-but-instea.patch,
    fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
    m_plotter->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
151
151
    m_layout->addItem(m_plotter);
152
152
    themeChanged();
 
153
    setPlotCount(m_plotCount);
153
154
}
154
155
 
155
156
void Plotter::themeChanged()
166
167
    linesColor.setAlphaF(0.4);
167
168
    m_plotter->setHorizontalLinesColor(linesColor);
168
169
    m_plotter->setVerticalLinesColor(linesColor);
169
 
    setPlotCount(m_plotCount);
170
170
    resizeEvent(0);
171
171
}
172
172