@@ -518,14 +518,14 @@ void path_manager_ui::enabled_active_button( const std::string action, bool enab
518
518
void path_manager_ui::draw_controls ()
519
519
{
520
520
// walk buttons
521
- cataimgui:: draw_colored_text ( _ ( " Walk:" ) );
521
+ draw_colored_text ( _ ( " Walk:" ) );
522
522
ImGui::SameLine ();
523
523
enabled_active_button ( " WALK_PATH" , pimpl->avatar_at_what_start_or_end () != -1 );
524
524
ImGui::SameLine ();
525
525
enabled_active_button ( " WALK_PATH_FROM_MIDDLE" , !pimpl->avatar_at_what_paths ().empty () );
526
526
527
527
// recording buttons
528
- cataimgui:: draw_colored_text ( _ ( " Recording:" ) );
528
+ draw_colored_text ( _ ( " Recording:" ) );
529
529
ImGui::SameLine ();
530
530
enabled_active_button ( " START_RECORDING" , !pimpl->is_recording_path () );
531
531
ImGui::SameLine ();
@@ -535,7 +535,7 @@ void path_manager_ui::draw_controls()
535
535
enabled_active_button ( " STOP_RECORDING" , pimpl->is_recording_path () );
536
536
537
537
// manage buttons
538
- cataimgui:: draw_colored_text ( _ ( " Manage:" ) );
538
+ draw_colored_text ( _ ( " Manage:" ) );
539
539
ImGui::SameLine ();
540
540
enabled_active_button ( " DELETE_PATH" , pimpl->selected_id != -1 );
541
541
ImGui::SameLine ();
@@ -545,7 +545,7 @@ void path_manager_ui::draw_controls()
545
545
pimpl->selected_id + 1 < static_cast <int >( pimpl->paths .size () ) );
546
546
547
547
// name buttons
548
- cataimgui:: draw_colored_text ( _ ( " Rename:" ) );
548
+ draw_colored_text ( _ ( " Rename:" ) );
549
549
ImGui::SameLine ();
550
550
enabled_active_button ( " RENAME_START" , pimpl->selected_id != -1 );
551
551
ImGui::SameLine ();
@@ -578,19 +578,19 @@ void path_manager_ui::draw_controls()
578
578
pimpl->selected_id = i;
579
579
}
580
580
ImGui::SameLine ();
581
- cataimgui:: draw_colored_text ( curr_path.name_start );
581
+ draw_colored_text ( curr_path.name_start );
582
582
583
583
ImGui::TableNextColumn ();
584
- cataimgui:: draw_colored_text ( avatar_distance_from_tile ( curr_path.recorded_path .front () ) );
584
+ draw_colored_text ( avatar_distance_from_tile ( curr_path.recorded_path .front () ) );
585
585
586
586
ImGui::TableNextColumn ();
587
- cataimgui:: draw_colored_text ( curr_path.name_end );
587
+ draw_colored_text ( curr_path.name_end );
588
588
589
589
ImGui::TableNextColumn ();
590
- cataimgui:: draw_colored_text ( avatar_distance_from_tile ( curr_path.recorded_path .back () ) );
590
+ draw_colored_text ( avatar_distance_from_tile ( curr_path.recorded_path .back () ) );
591
591
592
592
ImGui::TableNextColumn ();
593
- cataimgui:: draw_colored_text ( avatar_distance_from_tile (
593
+ draw_colored_text ( avatar_distance_from_tile (
594
594
curr_path.recorded_path [curr_path.avatar_closest_i_approximate ()] ) );
595
595
596
596
ImGui::TableNextColumn ();
0 commit comments