diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-13 22:43:19 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-03-13 22:43:19 +0100 |
| commit | c255e8882448c2f1349f69a3b7f68f7778923e56 (patch) | |
| tree | ed710b19e1ea6617c1060d21aaeeb1f22c7f3fcb /src/main.cpp | |
| parent | 470eeff5bd98207c463aeec308de6046bf3f6ac9 (diff) | |
csv file import
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 4d28a3c..9b6e599 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,6 +10,7 @@ #include "image.h" #include "config.h" #include "export.h" +#include "import.h" #include <stdio.h> @@ -547,7 +548,7 @@ void ts_create_gui(int window_w, int window_h) { pos_y += _ts_create_textbox_area(window_w, window_h, textbox_area_height, pos_y); if (dragdrop_data.did_drop) { - printf("Do loading..\n"); + current_search_result = ts_import_result(dragdrop_data.path); dragdrop_data.did_drop = false; } |
