Skip to content

Commit

Permalink
chore: remove unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz committed Feb 26, 2024
1 parent 8d72724 commit c8f0329
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/Application.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class Fonts;
class Toasts;
class IChatterinoBadges;
class ChatterinoBadges;
class SeventvBadges;
class SeventvPaints;
class FfzBadges;
class SeventvBadges;
Expand Down
5 changes: 0 additions & 5 deletions src/messages/MessageElement.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,6 @@ class CircularImageElement : public MessageElement
class TextElement : public MessageElement
{
public:
struct Word {
QString text;
int width = -1;
};

TextElement(const QString &text, MessageElementFlags flags,
const MessageColor &color = MessageColor::Text,
FontStyle style = FontStyle::ChatMedium);
Expand Down
1 change: 0 additions & 1 deletion src/providers/seventv/SeventvEventAPI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#include "providers/seventv/SeventvCosmetics.hpp"
#include "providers/seventv/SeventvPaints.hpp"
#include "providers/seventv/SeventvPersonalEmotes.hpp"
#include "util/PostToThread.hpp"

#include <QJsonArray>

Expand Down
2 changes: 1 addition & 1 deletion src/widgets/helper/ChannelView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1906,7 +1906,7 @@ void ChannelView::mouseMoveEvent(QMouseEvent *event)
{
// First entry gets a large image and full description
entries.push_back({showThumbnail
? emote->images.getImage(4.0)
? emote->images.getImage(3.0)
: nullptr,
emoteTooltips[i]});
}
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/settingspages/GeneralPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ void GeneralPage::initLayout(GeneralPageView &layout)
layout.addCheckbox("Use experimental smarter emote completion.",
s.useSmartEmoteCompletion);
layout.addDropdown<float>(
"Size", {"0.5x", "0.75x", "Default", "1.25x", "1.5x", "2x", "3x", "4x"},
"Size", {"0.5x", "0.75x", "Default", "1.25x", "1.5x", "2x"},
s.emoteScale,
[](auto val) {
if (val == 1)
Expand Down

0 comments on commit c8f0329

Please sign in to comment.