Browse Source

fix column data type interpretation

CPP-GTK4
yggverse 2 months ago
parent
commit
1b2debf3bd
  1. 4
      src/app/browser.cpp

4
src/app/browser.cpp

@ -295,11 +295,11 @@ int Browser::session_restore() @@ -295,11 +295,11 @@ int Browser::session_restore()
sqlite3_column_int(
statement,
DB::SESSION::IS_FULLSCREEN
) ? fullscreen() : unfullscreen();
) == 1 ? fullscreen() : unfullscreen();
// Restore children components
browserMain->session_restore(
sqlite3_column_int(
sqlite3_column_int64(
statement,
DB::SESSION::ID
)

Loading…
Cancel
Save