fix(ui): keep spellbook tab captions above chrome
This commit is contained in:
parent
c918ccea06
commit
16eb4844c1
4 changed files with 91 additions and 1 deletions
|
|
@ -26,7 +26,16 @@ public sealed class SpellbookWindowControllerTests
|
|||
[Fact]
|
||||
public void RetailFixture_BindsTextTabs_AndPropagatesOpenClosedState()
|
||||
{
|
||||
ImportedLayout layout = FixtureLoader.LoadSpellbook();
|
||||
ImportedLayout layout = LayoutImporter.Build(
|
||||
FixtureLoader.LoadSpellbookInfos(),
|
||||
_ => (0u, 0, 0),
|
||||
datFont: null,
|
||||
stringResolve: value => value.StringId switch
|
||||
{
|
||||
49867858u => "Spellbook",
|
||||
79360818u => "Components",
|
||||
_ => null,
|
||||
});
|
||||
var closed = new List<uint>();
|
||||
using SpellbookWindowController? controller = Bind(
|
||||
layout, new Spellbook(), close: () => closed.Add(1u));
|
||||
|
|
@ -37,6 +46,11 @@ public sealed class SpellbookWindowControllerTests
|
|||
UiElement spellPage = Assert.IsAssignableFrom<UiElement>(layout.FindElement(SpellbookWindowController.SpellPageId));
|
||||
UiElement componentPage = Assert.IsAssignableFrom<UiElement>(layout.FindElement(SpellbookWindowController.ComponentPageId));
|
||||
|
||||
Assert.Equal("Spellbook", Assert.Single(spellTab.LinesProvider()).Text);
|
||||
Assert.Equal("Components", Assert.Single(componentTab.LinesProvider()).Text);
|
||||
Assert.True(spellTab.DrawTextAfterChildren);
|
||||
Assert.True(componentTab.DrawTextAfterChildren);
|
||||
|
||||
Assert.Equal(RetailUiStateIds.Open, spellTab.ActiveRetailStateId);
|
||||
Assert.Equal(RetailUiStateIds.Closed, componentTab.ActiveRetailStateId);
|
||||
Assert.True(spellPage.Visible);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue