diff --git a/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui b/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui index 0d3d7c7e..edb576ac 100644 --- a/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui +++ b/src/gui/qt/gui_800x480/gamelobbydialog_800x480.ui @@ -146,7 +146,7 @@ p, li { white-space: pre-wrap; } QObject {font: bold 18px} - 0 + 1 diff --git a/src/gui/qt/gui_800x480/settingsdialog_800x480.ui b/src/gui/qt/gui_800x480/settingsdialog_800x480.ui index 25d13554..4b33e5ba 100644 --- a/src/gui/qt/gui_800x480/settingsdialog_800x480.ui +++ b/src/gui/qt/gui_800x480/settingsdialog_800x480.ui @@ -149,7 +149,7 @@ - 1 + 7 @@ -3811,7 +3811,7 @@ p, li { white-space: pre-wrap; } 1 - 7 + 3650 2 @@ -3927,6 +3927,9 @@ p, li { white-space: pre-wrap; } true + + QAbstractItemView::ExtendedSelection + 5 diff --git a/src/gui/qt/gui_800x480/tabs_800x480.ui b/src/gui/qt/gui_800x480/tabs_800x480.ui index 382a71cc..d18b5dac 100644 --- a/src/gui/qt/gui_800x480/tabs_800x480.ui +++ b/src/gui/qt/gui_800x480/tabs_800x480.ui @@ -82,7 +82,7 @@ Qt::NoFocus - 3 + 1 @@ -126,6 +126,9 @@ Qt::ScrollBarAlwaysOff + + true + @@ -765,11 +768,6 @@ - - Slider - QSlider -
myslider.h
-
MyLeftTabWidget QTabWidget @@ -787,6 +785,11 @@ QLabel
mychancelabel.h
+ + Slider + QSlider +
myslider.h
+
diff --git a/src/gui/qt/styles/gametablestylereader.cpp b/src/gui/qt/styles/gametablestylereader.cpp index a4f2575d..281149e3 100644 --- a/src/gui/qt/styles/gametablestylereader.cpp +++ b/src/gui/qt/styles/gametablestylereader.cpp @@ -1566,10 +1566,10 @@ void GameTableStyleReader::setWindowsGeometry(gameTableImpl *gt) gt->setMaximumSize(FixedWindowWidth.toInt(), FixedWindowHeight.toInt()); gt->resize(FixedWindowWidth.toInt(), FixedWindowHeight.toInt()); +#ifndef GUI_800x480 QDesktopWidget dw; int availableWidth = dw.screenGeometry().width(); int availableHeight = dw.screenGeometry().height(); -#ifndef GUI_800x480 if(availableWidth == FixedWindowWidth.toInt() && availableHeight == FixedWindowHeight.toInt()) { gt->actionFullScreen->setEnabled(TRUE); } else { @@ -1585,10 +1585,10 @@ void GameTableStyleReader::setWindowsGeometry(gameTableImpl *gt) gt->setMaximumSize(MaximumWindowWidth.toInt(), MaximumWindowHeight.toInt()); gt->resize(MinimumWindowWidth.toInt(), MinimumWindowHeight.toInt()); +#ifndef GUI_800x480 QDesktopWidget dw; int availableWidth = dw.screenGeometry().width(); int availableHeight = dw.screenGeometry().height(); -#ifndef GUI_800x480 if(availableWidth <= MaximumWindowWidth.toInt() && availableHeight <= MaximumWindowHeight.toInt()) { gt->actionFullScreen->setEnabled(TRUE); } else { @@ -1609,7 +1609,7 @@ void GameTableStyleReader::setSliderStyle(QSlider *s) QString height(""); #ifdef GUI_800x480 - height = " height: 8px;"; + height = " height: 10px;"; #else height = " height: 3px;"; #endif