From c163c5575af4d1e7755510b03a7cd7809869eeef Mon Sep 17 00:00:00 2001 From: navewindre Date: Wed, 28 Nov 2018 17:06:47 +0100 Subject: i hate myself --- cheat/internal_rewrite/ui.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'cheat/internal_rewrite/ui.h') diff --git a/cheat/internal_rewrite/ui.h b/cheat/internal_rewrite/ui.h index 7dc88a3..1dd6481 100644 --- a/cheat/internal_rewrite/ui.h +++ b/cheat/internal_rewrite/ui.h @@ -419,8 +419,11 @@ namespace ui edge_form->add_item( std::make_shared< ui::c_slider< int > >( 0, 0, 140, 70, 300, &g_settings.rage.edge_dtc_moving ) )->set_cond( [ ]( ) { return !!g_settings.rage.edge_dtc_normal( ); } ); - edge_form->add_item( std::make_shared< ui::c_checkbox >( 0, 0, xors( "freestanding" ), - &g_settings.rage.edge_detection ) ); + edge_form->add_item( std::make_shared< ui::c_dropdown< int > >( 0, 0, 140, xors( "freestanding" ), + &g_settings.rage.edge_detection, &dropdowns::antiaim_freestanding ) ); + + edge_form->add_item( std::make_shared< ui::c_slider< int > >( 0, 0, 140, 0, 90, xors( "modifier" ), + &g_settings.rage.edge_dtc_real_jitter ) ); edge_form->add_item( std::make_shared< ui::c_dropdown< > >( 0, 0, 140, xors( "priority" ), &g_settings.rage.edge_dtc_priority, &dropdowns::edge_priority ) @@ -430,7 +433,6 @@ namespace ui )->set_cond( [ ]( ) { return g_settings.rage.break_lby; } ); edge_form->add_item( std::make_shared< ui::c_slider< int > >( 0, 0, 140, 0, 90, xors( "fake jitter" ), &g_settings.rage.edge_dtc_jitter ) ); - edge_form->add_item(std::make_shared< ui::c_slider< int > >(0, 0, 140, 0, 90, xors("real jitter"), &g_settings.rage.edge_dtc_real_jitter)); } auto lby_form = std::make_shared< ui::c_form >( 0, 0, 215, 106, xors( "lby breaker" ), 106 ); { -- cgit v1.2.3