mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 12:05:59 +01:00
Remove unnecessary check
This commit is contained in:
parent
c69ce573de
commit
d9152a03fa
1 changed files with 2 additions and 5 deletions
|
@ -396,11 +396,8 @@ sqlite_load_bookmarks(zathura_database_t* db, const char* file)
|
||||||
bookmark->page = sqlite3_column_int(stmt, 1);
|
bookmark->page = sqlite3_column_int(stmt, 1);
|
||||||
bookmark->x = sqlite3_column_double(stmt, 2);
|
bookmark->x = sqlite3_column_double(stmt, 2);
|
||||||
bookmark->y = sqlite3_column_double(stmt, 3);
|
bookmark->y = sqlite3_column_double(stmt, 3);
|
||||||
|
bookmark->x = bookmark->x <= 0.0 ? DBL_MIN : bookmark->x;
|
||||||
if (bookmark->page > 1) {
|
bookmark->y = bookmark->y <= 0.0 ? DBL_MIN : bookmark->y;
|
||||||
bookmark->x = bookmark->x == 0.0 ? DBL_MIN : bookmark->x;
|
|
||||||
bookmark->y = bookmark->y == 0.0 ? DBL_MIN : bookmark->y;
|
|
||||||
}
|
|
||||||
|
|
||||||
girara_list_append(result, bookmark);
|
girara_list_append(result, bookmark);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue