Skip to content

Commit

Permalink
Empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
NEirotoXiN committed Dec 5, 2024
1 parent e53483b commit 8082c95
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Content.Client/BoomBox/UI/BoomBoxBoundUi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ protected override void Dispose(bool disposing)
if (disposing)
_window?.Dispose();
}
}
}
4 changes: 3 additions & 1 deletion Content.Client/BoomBox/UI/BoomBoxWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@
</BoxContainer>
<Slider Name="PlaybackSlider" HorizontalExpand="True"/>
</BoxContainer>
</DefaultWindow>
</DefaultWindow>


2 changes: 1 addition & 1 deletion Content.Client/BoomBox/UI/BoomBoxWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public void UpdateState(BoomBoxUiState state)
PlaybackSlider.MaxValue = state.SoundDuration;
PlaybackSlider.SetValueWithoutEvent(state.PlaybackPosition);
}
}
}
2 changes: 1 addition & 1 deletion Content.Server/BoomBox/BoomBoxComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ public sealed partial class BoomBoxComponent : Component

public float PlaybackPosition = 0f;
public float SoundDuration = 0f;
}
}
2 changes: 1 addition & 1 deletion Content.Server/BoomBox/BoomBoxSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -324,4 +324,4 @@ public void OnEmagged(EntityUid uid, BoomBoxComponent component, ref GotEmaggedE
_audioSystem.PlayPvs(component.EmagSound, uid);
args.Handled = true;
}
}
}
2 changes: 1 addition & 1 deletion Content.Server/BoomBoxTape/BoomBoxTapeComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ public sealed partial class BoomBoxTapeComponent : Component

public bool Used = false;

}
}
2 changes: 1 addition & 1 deletion Content.Shared/BoomBox/SharedBoomBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ public sealed class BoomBoxStartMessage : BoundUserInterfaceMessage
[Serializable, NetSerializable]
public sealed class BoomBoxStopMessage : BoundUserInterfaceMessage
{
}
}

0 comments on commit 8082c95

Please sign in to comment.