We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269e9c4 commit ccba65eCopy full SHA for ccba65e
Editor/Qml/EProjectHub.qml
@@ -17,6 +17,7 @@ Rectangle {
17
color: ETheme.primaryBgColor
18
19
ColumnLayout {
20
+ id: menuCol
21
anchors.fill: parent
22
anchors.margins: 20
23
@@ -27,7 +28,7 @@ Rectangle {
27
28
29
Image {
30
source: Qt.url('Resource/Image/Logo.png')
- sourceSize.width: 200
31
+ sourceSize.width: menuCol.width
32
}
33
34
Editor/Src/Widget/ProjectHub.cpp
@@ -10,6 +10,6 @@ namespace Editor {
10
: QmlWidget("EProjectHub.qml")
11
{
12
setWindowFlags(windowFlags() & ~Qt::WindowMaximizeButtonHint);
13
- setFixedSize(1024, 768);
+ setFixedSize(800, 600);
14
15
0 commit comments