Closed fynngodau closed 6 years ago
I noticed a bug when I wanted to open a database with no password ("") where the software would cancel the operation instead of opening. This fixes it by assuming "" when no String is entered.
""
Nice! Since the Qt Doc says:
QString("").isNull(); // returns false
I thought this would already be ok, but I just tested it and it returns null :/ Thank you!
I noticed a bug when I wanted to open a database with no password (
""
) where the software would cancel the operation instead of opening. This fixes it by assuming""
when no String is entered.