vrplayer: some minor fixes

ulab-next
Jay Sorg 11 years ago
parent 79eb2f3d14
commit 5402cd1273

@ -23,7 +23,7 @@
</rect>
</property>
<property name="text">
<string>VRPlayer v1.3</string>
<string>VRPlayer v1.4</string>
</property>
</widget>
<widget class="QPushButton" name="okButton">

@ -4,9 +4,9 @@
int main(int argc, char *argv[])
{
QApplication::setGraphicsSystem(QLatin1String("native"));
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}

@ -135,7 +135,7 @@ void MainWindow::moveEvent(QMoveEvent *)
void MainWindow::onVolSliderValueChanged(int value)
{
int volume;
volume = (value * 0xffff) / 100;
if (interface != 0)
{
@ -153,8 +153,8 @@ void MainWindow::setupUI()
lblVideo->setMinimumWidth(320);
lblVideo->setMinimumHeight(200);
QPalette palette = lblVideo->palette();
palette.setColor(lblVideo->backgroundRole(), Qt::black);
palette.setColor(lblVideo->foregroundRole(), Qt::black);
palette.setColor(lblVideo->backgroundRole(), QColor(0x00, 0x00, 0x01, 0xff));
palette.setColor(lblVideo->foregroundRole(), QColor(0x00, 0x00, 0x01, 0xff));
lblVideo->setAutoFillBackground(true);
lblVideo->setPalette(palette);
hboxLayoutTop = new QHBoxLayout;

Loading…
Cancel
Save