Pop-up launch configuration path on hover (Closes #1167) (#1174)

This commit is contained in:
2025-12-21 15:22:21 +01:00
parent 3bae3cf64f
commit 8c02b63051
@@ -51,11 +51,14 @@
<div class="launch-config-executable-field">
<FluentSelect TOption="string"
Multiple="false"
Width="100%"
Items="@this.ViewModel.Executables"
SelectedOption="@config.ExecutablePath"
SelectedOptionChanged="@((newValue) => this.ViewModel.ExecutableChanged(config, newValue))">
<OptionTemplate>
@(string.IsNullOrWhiteSpace(context) ? "Any Executable" : context)
<div title="@(context)">
@(string.IsNullOrWhiteSpace(context) ? "Any Executable" : context)
</div>
</OptionTemplate>
</FluentSelect>
</div>