Mercurial > minori
comparison src/gui/dialog/settings/services.cpp @ 44:619cbd6e69f9
filesystem: fix CreateDirectories function
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 22 Sep 2023 13:52:11 -0400 |
parents | cde8f67a7c7d |
children | 3d2decf093bb |
comparison
equal
deleted
inserted
replaced
43:eb9a78345ecb | 44:619cbd6e69f9 |
---|---|
44 result->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); | 44 result->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); |
45 | 45 |
46 QGroupBox* group_box = new QGroupBox(tr("Account"), result); | 46 QGroupBox* group_box = new QGroupBox(tr("Account"), result); |
47 group_box->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum); | 47 group_box->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Maximum); |
48 | 48 |
49 /* this is outdated! usernames are retrieved through a request to AniList now. | |
50 although that's a bit... erm... cancerous, maybe this method IS useful. IDK */ | |
49 QLabel* username_entry_label = new QLabel(tr("Username: (not your email address)"), group_box); | 51 QLabel* username_entry_label = new QLabel(tr("Username: (not your email address)"), group_box); |
50 | 52 |
51 QWidget* auth_widget = new QWidget(group_box); | 53 QWidget* auth_widget = new QWidget(group_box); |
52 QLineEdit* username_entry = new QLineEdit(username, auth_widget); | 54 QLineEdit* username_entry = new QLineEdit(username, auth_widget); |
53 connect(username_entry, &QLineEdit::editingFinished, this, | 55 connect(username_entry, &QLineEdit::editingFinished, this, |