feat: option for set window startup size

This commit is contained in:
Gary Wang
2022-03-11 16:21:56 +08:00
parent 5674230c4c
commit 432266a6f0
9 changed files with 94 additions and 6 deletions

View File

@ -118,6 +118,11 @@ int PlaylistManager::indexOf(const QString &filePath)
return m_playlist.indexOf(url);
}
int PlaylistManager::count() const
{
return m_playlist.count();
}
std::tuple<int, QString> PlaylistManager::previousFile() const
{
int count = m_playlist.count();