Fix alpha sorting on startup
[quandoparte] / application / stationlistmodel.cpp
index bdda526..eeb444e 100644 (file)
@@ -46,6 +46,12 @@ bool StationListModel::load(const QString &filename)
         qDebug() << "file error for:" << filename;
         return false;
     }
+    /*
+    QModelIndex first = index(0, 0);
+    QModelIndex last = index(rowCount(), columnCount());
+    emit dataChanged(first, last);
+    */
+    emit layoutChanged();
     return true;
 }