fix: update footer text format

- Added "Developed by ImpulsiveFPS" before links
- Removed coffee emoji from Ko-fi link
- Format: "Developed by ImpulsiveFPS | GitHub | Support me on Ko-fi"
This commit is contained in:
LemonNexus 2026-02-11 20:14:50 +00:00
parent 752c708f50
commit d197be804e
1 changed files with 1 additions and 1 deletions

View File

@ -503,7 +503,7 @@ class IconExtractorWindow(QMainWindow):
footer_layout.setContentsMargins(10, 10, 10, 10)
footer_layout.setSpacing(5)
footer_line1 = QLabel('<a href="https://github.com/ImpulsiveFPS/EU-Icon-Extractor" style="color: #888;">GitHub</a> | <a href="https://ko-fi.com/impulsivefps" style="color: #ff6b6b;">Support me on Ko-fi</a>')
footer_line1 = QLabel('Developed by ImpulsiveFPS | <a href="https://github.com/ImpulsiveFPS/EU-Icon-Extractor" style="color: #888;">GitHub</a> | <a href="https://ko-fi.com/impulsivefps" style="color: #ff6b6b;">Support me on Ko-fi</a>')
footer_line1.setStyleSheet("color: #888; font-size: 11px;")
footer_line1.setAlignment(Qt.AlignmentFlag.AlignCenter)
footer_line1.setOpenExternalLinks(True)