diff src/gui/dialog/settings/services.cc @ 258:862d0d8619f6

*: HUUUGE changes animia has been renamed to animone, so instead of thinking of a health condition, you think of a beautiful flower :) I've also edited some of the code for animone, but I have no idea if it even works or not because I don't have a mac or windows machine lying around. whoops! ... anyway, all of the changes divergent from Anisthesia are now licensed under BSD. it's possible that I could even rewrite most of the code to where I don't even have to keep the MIT license, but that's thinking too far into the future I've been slacking off on implementing the anime seasons page, mostly out of laziness. I think I'd have to create another db file specifically for the seasons anyway, this code is being pushed *primarily* because the hard drive it's on is failing! yay :)
author Paper <paper@paper.us.eu.org>
date Mon, 01 Apr 2024 02:43:44 -0400
parents ff0061e75f0f
children 657fda1b9cac
line wrap: on
line diff
--- a/src/gui/dialog/settings/services.cc	Sun Feb 18 16:02:14 2024 -0500
+++ b/src/gui/dialog/settings/services.cc	Mon Apr 01 02:43:44 2024 -0400
@@ -38,14 +38,14 @@
 		}
 
 		{
-			QLabel* sync_note_label =
-			    new QLabel(tr("Note: Minori is unable to synchronize multiple services at the same time."), sync_group_box);
+			QLabel* sync_note_label = new QLabel(
+			    tr("Note: Minori is unable to synchronize multiple services at the same time."), sync_group_box);
 			sync_layout->addWidget(sync_note_label);
 		}
 
 		full_layout->addWidget(sync_group_box);
 	}
-	
+
 	full_layout->setSpacing(10);
 	full_layout->addStretch();
 
@@ -73,7 +73,8 @@
 			{
 				QPushButton* auth_button = new QPushButton(auth_widget);
 				connect(auth_button, &QPushButton::clicked, this, [] { Services::AniList::AuthorizeUser(); });
-				auth_button->setText(session.config.auth.anilist.auth_token.empty() ? tr("Authorize...") : tr("Re-authorize..."));
+				auth_button->setText(session.config.auth.anilist.auth_token.empty() ? tr("Authorize...")
+				                                                                    : tr("Re-authorize..."));
 				auth_layout->addWidget(auth_button);
 			}
 
@@ -82,13 +83,14 @@
 
 		{
 			/* Note on creating new accounts... */
-			QLabel* note_label = new QLabel(tr("<a href=\"http://anilist.co/\">Create a new AniList account</a>"), group_box);
+			QLabel* note_label =
+			    new QLabel(tr("<a href=\"http://anilist.co/\">Create a new AniList account</a>"), group_box);
 			note_label->setTextFormat(Qt::RichText);
 			note_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
 			note_label->setOpenExternalLinks(true);
 			layout->addWidget(note_label);
 		}
-		
+
 		full_layout->addWidget(group_box);
 	}