diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-25 10:11:33 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-25 10:11:33 +0100 |
| commit | 6318845388852c3eccb15ddce619389a3d49317d (patch) | |
| tree | babc6ad3e79675cbdd949e257153a28892c0cde7 /sb.cpp | |
| parent | 41652d5f074943cd5fecb4396edec0a8c22f7c7c (diff) | |
set background color on load to black
Diffstat (limited to 'sb.cpp')
| -rw-r--r-- | sb.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -136,6 +136,7 @@ main(int argc, char **argv) { web = new QWebEngineView(); web->setPage(&page); web->load(QUrl(getenv("WWW_HOME"))); + page.setBackgroundColor(QColor(40, 40, 40)); progressbar.setMaximum(100); progressbar.setMinimum(0); progressbar.setTextVisible(false); |