diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-26 01:03:41 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-26 01:03:41 +0800 |
commit | b396dea89d04f9307261a3852ea8547681e95f7f (patch) | |
tree | 1b4f332c0f6d32b70c6297898056bb2ff422cf3b /features/streamsGUI | |
parent | d36dbde865aec68f7fd564977cdf8e9c5912edbe (diff) | |
download | SoopyV2-b396dea89d04f9307261a3852ea8547681e95f7f.tar.gz SoopyV2-b396dea89d04f9307261a3852ea8547681e95f7f.tar.bz2 SoopyV2-b396dea89d04f9307261a3852ea8547681e95f7f.zip |
Finish museum gui (except search bar)
Diffstat (limited to 'features/streamsGUI')
-rw-r--r-- | features/streamsGUI/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/streamsGUI/index.js b/features/streamsGUI/index.js index b62bdcd..f452806 100644 --- a/features/streamsGUI/index.js +++ b/features/streamsGUI/index.js @@ -79,7 +79,7 @@ class StreamPage extends GuiPage { sidebar.addChild(new SoopyTextElement().setText("§0"+data.user_name).setMaxTextScale(3).setLocation(0.1, 0.05, 0.8, 0.1)) - let title = new SoopyMarkdownElement().setText("§0"+data.title).setLocation(0.1, 0.15, 0.8, 0.1) + let title = new SoopyMarkdownElement().setText(data.title).setLocation(0.1, 0.15, 0.8, 0.1) sidebar.addChild(title) let image = new SoopyImageElement().setImage(data.image).setLocation(0.1, 0.15+title.getHeight(), 0.8, 0.4).loadHeightFromImage() |