File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
CodeBeam.MudBlazor.Extensions/Components Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 109109 public async Task Refresh ()
110110 {
111111 _show = false ;
112- await Task .Delay (1 );
112+ await Task .Delay (10 );
113113 await InvokeAsync (StateHasChanged );
114114 _show = true ;
115- await Task .Delay (1 );
115+ await Task .Delay (10 );
116116 await InvokeAsync (StateHasChanged );
117117 }
118118
Original file line number Diff line number Diff line change 33
44<div class =" @Classname" style =" @Style " >
55 @* Don't make OnDoubleClick to method, causes infinite loop *@
6- <MudSlider @ref =" _slider" @bind-Value =" @Dimension" @bind-Value:after =" @(() => UpdateDimension(_slider.Value ))" ondblclick =" @OnDoubleClick"
6+ <MudSlider @ref =" _slider" @bind-Value =" @Dimension" @bind-Value:after =" @(() => UpdateDimension(Dimension ))" ondblclick =" @OnDoubleClick"
77 T =" double" Min =" 0" Max =" 100" Step =" @Sensitivity" Disabled =" @(!EnableSlide)"
88 Class =" @SliderClassname" Style =" overflow: hidden; z-index: 6" />
99
You can’t perform that action at this time.
0 commit comments