Skip to content

Commit ccba65e

Browse files
committed
feat: update project hub
1 parent 269e9c4 commit ccba65e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Editor/Qml/EProjectHub.qml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Rectangle {
1717
color: ETheme.primaryBgColor
1818

1919
ColumnLayout {
20+
id: menuCol
2021
anchors.fill: parent
2122
anchors.margins: 20
2223

@@ -27,7 +28,7 @@ Rectangle {
2728

2829
Image {
2930
source: Qt.url('Resource/Image/Logo.png')
30-
sourceSize.width: 200
31+
sourceSize.width: menuCol.width
3132
}
3233
}
3334

Editor/Src/Widget/ProjectHub.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ namespace Editor {
1010
: QmlWidget("EProjectHub.qml")
1111
{
1212
setWindowFlags(windowFlags() & ~Qt::WindowMaximizeButtonHint);
13-
setFixedSize(1024, 768);
13+
setFixedSize(800, 600);
1414
}
1515
}

0 commit comments

Comments
 (0)