Widgets Fixes (#190)

* CheckboxWidget: Check

* ImageWidget: Check

* LabelWidget: Delete uselessly overridden Layout

* ProgressBarWidget: Check
This commit is contained in:
S6066
2018-10-09 23:23:22 +02:00
committed by Jérôme Leclercq
parent a24944d103
commit 56922001ba
5 changed files with 6 additions and 21 deletions

View File

@@ -26,8 +26,6 @@ namespace Ndk
//virtual ImageWidget* Clone() const = 0;
void ResizeToContent();
inline const Nz::Color& GetColor() const;
inline const Nz::TextureRef& GetTexture() const;
inline const Nz::Rectf& GetTextureCoords() const;

View File

@@ -32,8 +32,6 @@ namespace Ndk
LabelWidget& operator=(LabelWidget&&) = default;
private:
void Layout() override;
EntityHandle m_textEntity;
Nz::TextSpriteRef m_textSprite;
};