This commit is contained in:
Mirco Wittrien 2021-05-27 19:01:15 +02:00
parent c20be11c8f
commit 3f41be2c4c
2 changed files with 13 additions and 4 deletions

View File

@ -4853,7 +4853,8 @@
}
},
"BDFDB_Patrons": {
"760784464560914452": {"active": true, "tier": "t3", "text": "Keyra", "id": "Keyra (PaCu)"},
"446396928092274720": {"active": true, "tier": "t3", "text": "", "id": "Sayori (SaySa)"},
"760784464560914452": {"active": true, "tier": "t3", "text": "Keyra", "id": "Keyra (PaCu)"},
"266072167349747712": {"active": true, "tier": "t3", "text": "King", "id": "Duckx (dogu)"},
"646354877336911884": {"active": true, "tier": "t3", "text": "", "id": "case (kharri)"},
"431078101997584395": {"active": true, "tier": "t2", "text": "", "id": "LEMI (f4g8)"},

View File

@ -2,7 +2,7 @@
* @name EmojiStatistics
* @author DevilBro
* @authorId 278543574059057154
* @version 2.9.7
* @version 2.9.8
* @description Shows you an Overview of Emojis and Emoji Servers
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
@ -17,8 +17,13 @@ module.exports = (_ => {
"info": {
"name": "EmojiStatistics",
"author": "DevilBro",
"version": "2.9.7",
"version": "2.9.8",
"description": "Shows you an Overview of Emojis and Emoji Servers"
},
"changeLog": {
"improved": {
"Swapped Position": "Swapped Position with the Diversity Selector"
}
}
};
@ -89,6 +94,9 @@ module.exports = (_ => {
${BDFDB.dotCNS.emojipicker + BDFDB.dotCN._emojistatisticsstatisticsbutton} {
width: 24px;
height: 24px;
grid-column: 2/3;
}
${BDFDB.dotCNS.emojipicker + BDFDB.dotCN.emojipickerdiversityselector} {
grid-column: 3/4;
}
`;
@ -105,7 +113,7 @@ module.exports = (_ => {
processEmojiPicker (e) {
this.loadEmojiList();
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {name: "DiversitySelector"});
if (index > -1) children.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TooltipContainer, {
if (index > -1) children.splice(index, 0, BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TooltipContainer, {
text: this.labels.modal_header,
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.Clickable, {
className: BDFDB.disCN._emojistatisticsstatisticsbutton,