ui: Fixed history dropdown click opened again when clicking on history button on Windows
This commit is contained in:
@@ -256,7 +256,7 @@ std::string QtBookmark::getDateString() const
|
||||
{
|
||||
result = "today";
|
||||
}
|
||||
else if (creationDate.deltaDays(now) == 1) // yesterday
|
||||
else if (now.deltaDays(creationDate) == 1) // yesterday
|
||||
{
|
||||
result = "yesterday";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user