mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
11 lines
206 B
C++
11 lines
206 B
C++
#include "comic_vine_dialog.h"
|
|
|
|
ComicVineDialog::ComicVineDialog(QWidget *parent) :
|
|
QDialog(parent)
|
|
{
|
|
setStyleSheet(""
|
|
"QDialog {background-color: #404040; }"
|
|
"");
|
|
setFixedSize(672,529);
|
|
}
|