mirror of
https://github.com/KDE/konsole.git
synced 2026-05-19 03:57:43 -04:00
Allow profile filenames to have multiple '.'s.
After this hostname.local.profile will work with --profile and --list-profiles. Also, the profile path file is checked if it is a directory. BUG: 250399 FIXED-IN: 4.6.3
This commit is contained in:
@@ -96,7 +96,7 @@ void Application::listAvailableProfiles()
|
||||
while ( iter.hasNext() )
|
||||
{
|
||||
QFileInfo info(iter.next());
|
||||
std::cout << info.baseName().toLocal8Bit().data() << std::endl;
|
||||
std::cout << info.completeBaseName().toLocal8Bit().data() << std::endl;
|
||||
}
|
||||
quit();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user