From 752c995066296cc03b4f16fc4418bb39ccdb154b Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Tue, 26 Apr 2016 17:23:10 -0400 Subject: [PATCH] sure you want to kill works again --- 4ed_file_view.cpp | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/4ed_file_view.cpp b/4ed_file_view.cpp index d09f8b01..d63eec81 100644 --- a/4ed_file_view.cpp +++ b/4ed_file_view.cpp @@ -3625,29 +3625,6 @@ step_file_view(System_Functions *system, View *view, b32 is_active){ { gui_do_top_bar(target); -#if 0 - { - char prompt_space[256]; - char text_space[256]; - String prompt, text; - - prompt = make_fixed_width_string(prompt_space); - text = make_fixed_width_string(text_space); - - copy(&prompt, "U: "); - int_to_str((int)view->gui_scroll.target_y, &text); - gui_do_text_field(target, prompt, text); - - copy(&prompt, "O: "); - int_to_str((int)view->gui_target.scroll_original.target_y, &text); - gui_do_text_field(target, prompt, text); - - copy(&prompt, "N: "); - int_to_str((int)view->gui_target.scroll_updated.target_y, &text); - gui_do_text_field(target, prompt, text); - } -#endif - if (view->showing_ui == VUI_None){ gui_begin_overlap(target); { @@ -3859,7 +3836,7 @@ step_file_view(System_Functions *system, View *view, b32 is_active){ } if (action != -1){ - interactive_view_complete(view, {0}, action); + interactive_view_complete(view, view->dest, action); } }break; }break;