@@ -128,7 +128,7 @@ void GuildLister::UpdateTooltips()
128128 std::string name = " " ;
129129 if (sf & BIT_FOLDER)
130130 {
131- name = " Server Folder " ;
131+ name = GetDiscordInstance ()-> GetGuildFolderName (sf & ~BIT_FOLDER) ;
132132 currentFolder = sf & ~BIT_FOLDER;
133133
134134 if (sf == BIT_FOLDER) {
@@ -518,13 +518,13 @@ void GuildLister::DrawServerIcon(HDC hdc, HBITMAP hicon, int& y, RECT& rect, Sno
518518 oldPen = SelectObject (hdc, GetStockObject (BLACK_PEN));
519519
520520 if (currentFolder == (id & ~BIT_FOLDER)) {
521- RoundRect (hdc, rcProfile.left , rcProfile.top , rcProfile.right , rcProfile.top + pfpBorderSize + amount, 10 , 10 );
521+ RoundRect (hdc, rcProfile.left + 1 , rcProfile.top + 1 , rcProfile.right - 1 , rcProfile.top - 1 + pfpBorderSize + amount, 10 , 10 );
522522 }
523523 else if (isLastItem) {
524- RoundRect (hdc, rcProfile.left , rcProfile.top - 15 , rcProfile.right , rcProfile.top + pfpBorderSize, 10 , 10 );
524+ RoundRect (hdc, rcProfile.left + 1 , rcProfile.top - 14 , rcProfile.right - 1 , rcProfile.top - 1 + pfpBorderSize, 10 , 10 );
525525 }
526526 else {
527- RoundRect (hdc, rcProfile.left , rcProfile.top - 15 , rcProfile.right , rcProfile.bottom + 15 , 10 , 10 );
527+ RoundRect (hdc, rcProfile.left + 1 , rcProfile.top - 14 , rcProfile.right - 1 , rcProfile.bottom - 1 + 15 , 10 , 10 );
528528 }
529529
530530 SelectObject (hdc, oldPen);
@@ -1076,7 +1076,7 @@ LRESULT CALLBACK GuildLister::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
10761076
10771077 if (sf & BIT_FOLDER)
10781078 {
1079- name = " Server Folder " ;
1079+ name = " " ;
10801080 avatarlnk = " " ;
10811081
10821082 currentFolder = sf & ~BIT_FOLDER;
0 commit comments