diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-21 15:53:51 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-21 15:53:51 -0500 |
commit | a059c1fdb254fc5e2dca743597fe96c0a8a09aa3 (patch) | |
tree | 126af0492cd60a8c7e71721510f03296aa52531a /lumina-desktop/desktop-plugins | |
parent | Clean up a couple other session options: (diff) | |
download | lumina-a059c1fdb254fc5e2dca743597fe96c0a8a09aa3.tar.gz lumina-a059c1fdb254fc5e2dca743597fe96c0a8a09aa3.tar.bz2 lumina-a059c1fdb254fc5e2dca743597fe96c0a8a09aa3.zip |
Add a completely new background method for a distributor to set per-system defaults for the Lumina desktop. Also fix a bug this exposed in how the Lumina panel removes plugins.
Diffstat (limited to 'lumina-desktop/desktop-plugins')
-rw-r--r-- | lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp index a96358e7..ce20c563 100644 --- a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp +++ b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp @@ -22,7 +22,7 @@ DesktopViewPlugin::DesktopViewPlugin(QWidget* parent, QString ID) : LDPlugin(par list->setIconSize(QSize(64,64)); list->setUniformItemSizes(true); this->layout()->addWidget(list); - this->setInitialSize(200,300); + this->setInitialSize(600,600); watcher = new QFileSystemWatcher(this); watcher->addPath(QDir::homePath()+"/Desktop"); connect(watcher, SIGNAL(directoryChanged(QString)), this, SLOT(updateContents()) ); |