File tree Expand file tree Collapse file tree
ShockOsc/Ui/Pages/Dash/Tabs Expand file tree Collapse file tree Original file line number Diff line number Diff line change 136136 }
137137</MudPaper >
138138
139- <MudPaper Outlined =" true" Class =" rounded-lg mud-paper-padding-margin" >
140- <MudText >Medal.TV ICYMI (Automatic bookmarking and clip capture)</MudText >
141- <MudDivider />
142- <MudCheckBox Class =" option-width option-checkbox-height" @bind-Value =" ModuleConfig.Config.MedalIcymi.Enabled" Label =" ICYMI Enabled" @bind-Value:after =" OnSettingsValueChange" />
143-
144-
145- <div style =" display : flex ; width : 600px ; padding-top : 20px ;" >
146- <MudTextField Class =" option-width" Variant =" Variant.Filled" @bind-Value =" ModuleConfig.Config.MedalIcymi.Name" Label =" Clip Name" @bind-Value:after =" OnSettingsValueChange" />
147- <MudTextField Class =" option-width" Variant =" Variant.Filled" @bind-Value =" ModuleConfig.Config.MedalIcymi.Description" Label =" Clip Description" @bind-Value:after =" OnSettingsValueChange" />
148- <MudTextField Class =" option-width" Variant =" Variant.Filled" @bind-Value =" ModuleConfig.Config.MedalIcymi.ClipDuration" Label =" Clip Duration (sec)" @bind-Value:after =" OnSettingsValueChange" />
149- </div >
150-
151- <div style =" display : flex ; width : 600px ; padding-top : 20px ;" >
152- <MudSelect Class =" option-width" Dense =" true" Variant =" Variant.Filled" @bind-Value =" ModuleConfig.Config.MedalIcymi.TriggerAction" Label =" Capture Type" @bind-Value:after =" OnSettingsValueChange" >
153- @foreach ( IcymiTriggerAction triggerAction in Enum .GetValues (typeof (IcymiTriggerAction )))
154- {
155- <MudSelectItem Value =" @triggerAction" >@triggerAction </MudSelectItem >
156- }
157- </MudSelect >
158- <MudSelect Class =" option-width" Dense =" true" Variant =" Variant.Filled" @bind-Value =" ModuleConfig.Config.MedalIcymi.AlertType" Label =" Alert Type" @bind-Value:after =" OnSettingsValueChange" >
159- @foreach ( IcymiAlertType alertType in Enum .GetValues (typeof (IcymiAlertType )))
160- {
161- <MudSelectItem Value =" @alertType" >@alertType </MudSelectItem >
162- }
163- </MudSelect >
164- </div >
165-
166- <div style =" width : 600px ; padding-top : 20px ;" >
167- <MudText >Target Game (changing requires restart)</MudText >
168- <MudDivider />
169- <MudSelect Class =" option-width" Dense =" true" Variant =" Variant.Filled" @bind-Value =" ModuleConfig.Config.MedalIcymi.Game" Label =" Record for" @bind-Value:after =" OnSettingsValueChange" >
170- @foreach ( IcymiGame icymiGame in Enum .GetValues (typeof (IcymiGame )))
171- {
172- <MudSelectItem Value =" @icymiGame" >@icymiGame </MudSelectItem >
173- }
174- </MudSelect >
175- </div >
176- </MudPaper >
177-
178139@code {
179140
180141 [ModuleInject ] private UnderscoreConfig UnderscoreConfig { get ; set ; } = null ! ;
You can’t perform that action at this time.
0 commit comments