diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-05 20:05:46 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-05 20:05:46 +0100 |
| commit | 129d8d9a5922eb3d4df9320418fb98dfbbadc053 (patch) | |
| tree | 47422dcb5536ebc0c0ba62907aab9c2daa9c10f8 /src/main_windows.cpp | |
| parent | f3401ce1532938fec63d22095ca8b14affcfdce3 (diff) | |
save previous search query to config and load on startup
Diffstat (limited to 'src/main_windows.cpp')
| -rw-r--r-- | src/main_windows.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main_windows.cpp b/src/main_windows.cpp index 1f64642..c574b2f 100644 --- a/src/main_windows.cpp +++ b/src/main_windows.cpp @@ -10,6 +10,7 @@ #include "array.h" #include "memory_bucket.h" #include "image.h" +#include "config.h" #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif @@ -107,6 +108,7 @@ int main(int, char**) ts_init(); ts_load_images(); + ts_load_config(); ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f); bool done = false; |
