mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
Ignore '.' folders in ChooseCyclistDialog
.. mostly because this is good practice but also to avoid showing the .pyfixes folder.
This commit is contained in:
@@ -100,6 +100,10 @@ ChooseCyclistDialog::getList()
|
||||
while (i.hasNext()) {
|
||||
QString name = i.next();
|
||||
SKIP_QTWE_CACHE // skip Folder Names created by QTWebEngine on Windows
|
||||
|
||||
// ignore dot folders
|
||||
if (name.startsWith(".")) continue;
|
||||
|
||||
QListWidgetItem *newone = new QListWidgetItem(name, listWidget);
|
||||
|
||||
// get avatar image if it exists
|
||||
|
||||
Reference in New Issue
Block a user