QuickLauncher: Ignore empty URLs at reading the configuration

Signed-off-by: Roman Savochenko <roman@home.home>
pull/418/head
Roman Savochenko 5 months ago
parent a99f7a16ff
commit d2412f01de

@ -856,7 +856,7 @@ void QuickLauncher::loadConfig()
int n = 0;
while (iter != urls.end()) {
TQString url = *iter;
addApp(url, n, false);
if(!url.isEmpty()) addApp(url, n, false);
++iter;
++n;
}

Loading…
Cancel
Save