fix(plugin-repl): add padding to pin button (#6426)
This commit is contained in:
+1
-1
@@ -102,7 +102,7 @@
|
|||||||
- Dev: Made Settings & Account button on Linux/macOS SVGs. (#6267)
|
- Dev: Made Settings & Account button on Linux/macOS SVGs. (#6267)
|
||||||
- Dev: Made "Chatters" button an SVG. (#6397)
|
- Dev: Made "Chatters" button an SVG. (#6397)
|
||||||
- Dev: Made "Moderation" button an SVG. (#6398, #6412, #6414)
|
- Dev: Made "Moderation" button an SVG. (#6398, #6412, #6414)
|
||||||
- Dev: Made user card "pin" button SVGs. (#6399)
|
- Dev: Made user card "pin" button SVGs. (#6399, #6426)
|
||||||
- Dev: Some more setting widget refactors. (#6317)
|
- Dev: Some more setting widget refactors. (#6317)
|
||||||
- Dev: Emoji style / set is now stored lowercase (and matched case-insensitively). Changing emoji style from this point on and then running an old version might mean you will use the Twitter emoji style by default. (#6300)
|
- Dev: Emoji style / set is now stored lowercase (and matched case-insensitively). Changing emoji style from this point on and then running an old version might mean you will use the Twitter emoji style by default. (#6300)
|
||||||
- Dev: Refactored `OnceFlag`. (#6237, #6316)
|
- Dev: Refactored `OnceFlag`. (#6237, #6316)
|
||||||
|
|||||||
@@ -444,7 +444,7 @@ PluginRepl::PluginRepl(QString id, QWidget *parent)
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
this->ui.pin = new SvgButton(this->ui.pinDisabledSource_, this, {0, 0});
|
this->ui.pin = new SvgButton(this->ui.pinDisabledSource_, this, {3, 3});
|
||||||
this->ui.pin->setScaleIndependentSize({18, 18});
|
this->ui.pin->setScaleIndependentSize({18, 18});
|
||||||
this->ui.pin->setToolTip(u"Pin Window"_s);
|
this->ui.pin->setToolTip(u"Pin Window"_s);
|
||||||
QObject::connect(this->ui.pin, &Button::leftClicked, this, [this] {
|
QObject::connect(this->ui.pin, &Button::leftClicked, this, [this] {
|
||||||
|
|||||||
Reference in New Issue
Block a user