mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
Style fix
This commit is contained in:
parent
9d69deee99
commit
bd2be24e00
5 changed files with 8 additions and 13 deletions
|
@ -110,6 +110,6 @@
|
|||
<file>resources/refresh-small.png</file>
|
||||
<file>resources/checkbox-indeterminate.png</file>
|
||||
<file>resources/egg/0.jpg</file>
|
||||
<file>resources/egg/3.jpg</file>
|
||||
<file>resources/egg/1.jpg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
|
@ -133,11 +133,12 @@ void localLibraryWidget::setupDatabase() {
|
|||
QStringList args;
|
||||
args << "env" << "icon_width_divider=" + QString::number(stdIconWidthDivider - 1.5) << "icon_height_divider=" + QString::number(stdIconHeightDivider - 1.5) << "./explore_local_library.sh" << booksList;
|
||||
|
||||
/* Logs/steps needed to debug the database creation
|
||||
* for(int i = 0; i < args.count(); i++) {
|
||||
* log("Arguments for database creation: '" + args[i] + "'", className);
|
||||
* }
|
||||
*/
|
||||
/*
|
||||
* Logs/steps needed to debug the database creation
|
||||
* for(int i = 0; i < args.count(); i++) {
|
||||
* log("Arguments for database creation: '" + args[i] + "'", className);
|
||||
* }
|
||||
*/
|
||||
|
||||
QProcess *proc = new QProcess();
|
||||
proc->start(prog, args);
|
||||
|
|
Before Width: | Height: | Size: 258 KiB After Width: | Height: | Size: 258 KiB |
|
@ -61,12 +61,6 @@ void egg::changeIndex(int index) {
|
|||
name.append("Szybet<br>(Contributor)");
|
||||
}
|
||||
else if(index == 1) {
|
||||
name.append("NiLuJe<br>(Contributor)");
|
||||
}
|
||||
else if(index == 2) {
|
||||
name.append("akemnade<br>(Contributor)");
|
||||
}
|
||||
else if(index == 3) {
|
||||
name.append("tux-linux<br>(Maintainer)");
|
||||
}
|
||||
name.append("</b></div>");
|
||||
|
|
|
@ -20,7 +20,7 @@ public:
|
|||
explicit egg(QWidget *parent = nullptr);
|
||||
~egg();
|
||||
int index = 0;
|
||||
const int maximumIndex = 3;
|
||||
const int maximumIndex = 1;
|
||||
bool firstRun = true;
|
||||
void changeIndex(int index);
|
||||
|
||||
|
|
Loading…
Reference in a new issue