-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added search bar to warp points (#23978)
(cherry picked from commit 668d0eca2276b731730af930024ae66ccfdda11e)
- Loading branch information
Showing
2 changed files
with
33 additions
and
14 deletions.
There are no files selected for viewing
23 changes: 9 additions & 14 deletions
23
Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
<DefaultWindow xmlns="https://spacestation14.io" | ||
Title="{Loc 'ghost-target-window-title'}" | ||
MinSize="450 450" | ||
SetSize="450 450"> | ||
<ScrollContainer VerticalExpand="True" | ||
HorizontalExpand="True" | ||
HScrollEnabled="False"> | ||
<BoxContainer Name="ButtonContainer" | ||
Orientation="Vertical" | ||
VerticalExpand="True" | ||
SeparationOverride="5"> | ||
<!-- Target buttons get added here by code --> | ||
</BoxContainer> | ||
</ScrollContainer> | ||
<DefaultWindow xmlns="https://spacestation14.io" Title="{Loc 'ghost-target-window-title'}" MinSize="450 450" SetSize="450 450"> | ||
<BoxContainer Orientation="Vertical" HorizontalExpand="True" SizeFlagsStretchRatio="0.4"> | ||
<LineEdit Name="SearchBar" PlaceHolder="Search" HorizontalExpand="True" Margin="0 4" /> | ||
<ScrollContainer VerticalExpand="True" HorizontalExpand="True" HScrollEnabled="False"> | ||
<BoxContainer Name="ButtonContainer" Orientation="Vertical" VerticalExpand="True" SeparationOverride="5"> | ||
<!-- Target buttons get added here by code --> | ||
</BoxContainer> | ||
</ScrollContainer> | ||
</BoxContainer> | ||
</DefaultWindow> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters