-rw-r--r-- | library/lnkproperties.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/lnkproperties.cpp b/library/lnkproperties.cpp index 0661423..865f590 100644 --- a/library/lnkproperties.cpp +++ b/library/lnkproperties.cpp | |||
@@ -123,12 +123,15 @@ LnkProperties::LnkProperties( AppLnk* l, QWidget* parent ) | |||
123 | //d->rotateButtons->setButton((l->rotation().toInt()%360)/90); | 123 | //d->rotateButtons->setButton((l->rotation().toInt()%360)/90); |
124 | } | 124 | } |
125 | else { | 125 | else { |
126 | d->rotateButtons->setEnabled(false); | 126 | d->rotateButtons->setEnabled(false); |
127 | } | 127 | } |
128 | 128 | ||
129 | if ( !l->property( "Arguments" ).isEmpty() ) | ||
130 | d->arguments->setText( l->property( "Arguments" ) ); | ||
131 | |||
129 | Config cfg("Launcher"); | 132 | Config cfg("Launcher"); |
130 | cfg.setGroup("Preload"); | 133 | cfg.setGroup("Preload"); |
131 | QStringList apps = cfg.readListEntry("Apps",','); | 134 | QStringList apps = cfg.readListEntry("Apps",','); |
132 | d->preload->setChecked( apps.contains(l->exec()) ); | 135 | d->preload->setChecked( apps.contains(l->exec()) ); |
133 | if ( Global::isBuiltinCommand(lnk->exec()) ) | 136 | if ( Global::isBuiltinCommand(lnk->exec()) ) |
134 | d->preload->hide(); // builtins are always fast | 137 | d->preload->hide(); // builtins are always fast |