mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
Merge pull request #494 from dubhater/patch-1
Qt: Fix assert with one-letter root folder names
This commit is contained in:
commit
30a6a3244a
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ public:
|
|||
|
||||
bool hasNext() const
|
||||
{
|
||||
return mySlashIndex > 0;
|
||||
return mySlashIndex > -1;
|
||||
}
|
||||
|
||||
QString const& next()
|
||||
|
|
Loading…
Reference in a new issue