mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
fix column data type interpretation
This commit is contained in:
parent
19d7428e75
commit
1b2debf3bd
1 changed files with 2 additions and 2 deletions
|
|
@ -295,11 +295,11 @@ int Browser::session_restore()
|
||||||
sqlite3_column_int(
|
sqlite3_column_int(
|
||||||
statement,
|
statement,
|
||||||
DB::SESSION::IS_FULLSCREEN
|
DB::SESSION::IS_FULLSCREEN
|
||||||
) ? fullscreen() : unfullscreen();
|
) == 1 ? fullscreen() : unfullscreen();
|
||||||
|
|
||||||
// Restore children components
|
// Restore children components
|
||||||
browserMain->session_restore(
|
browserMain->session_restore(
|
||||||
sqlite3_column_int(
|
sqlite3_column_int64(
|
||||||
statement,
|
statement,
|
||||||
DB::SESSION::ID
|
DB::SESSION::ID
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue