Skip to content

Commit 8c02b63

Browse files
committed
Pop-up launch configuration path on hover (Closes #1167) (#1174)
1 parent 3bae3cf commit 8c02b63

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Daybreak/Views/LaunchConfigurationsView.razor

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,14 @@
5151
<div class="launch-config-executable-field">
5252
<FluentSelect TOption="string"
5353
Multiple="false"
54+
Width="100%"
5455
Items="@this.ViewModel.Executables"
5556
SelectedOption="@config.ExecutablePath"
5657
SelectedOptionChanged="@((newValue) => this.ViewModel.ExecutableChanged(config, newValue))">
5758
<OptionTemplate>
58-
@(string.IsNullOrWhiteSpace(context) ? "Any Executable" : context)
59+
<div title="@(context)">
60+
@(string.IsNullOrWhiteSpace(context) ? "Any Executable" : context)
61+
</div>
5962
</OptionTemplate>
6063
</FluentSelect>
6164
</div>

0 commit comments

Comments
 (0)