mirror of
				https://github.com/Swordfish90/cool-retro-term.git
				synced 2025-11-04 09:02:14 +00:00 
			
		
		
		
	Fix: dialog sizes and positioning.
This commit is contained in:
		@@ -6,8 +6,8 @@ import QtQuick.Window 2.0
 | 
				
			|||||||
Window{
 | 
					Window{
 | 
				
			||||||
    id: dialogwindow
 | 
					    id: dialogwindow
 | 
				
			||||||
    title: qsTr("About")
 | 
					    title: qsTr("About")
 | 
				
			||||||
    width: 450
 | 
					    width: 600
 | 
				
			||||||
    height: 300
 | 
					    height: 400
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ColumnLayout{
 | 
					    ColumnLayout{
 | 
				
			||||||
        anchors.fill: parent
 | 
					        anchors.fill: parent
 | 
				
			||||||
@@ -64,15 +64,13 @@ Window{
 | 
				
			|||||||
        ColumnLayout{
 | 
					        ColumnLayout{
 | 
				
			||||||
            anchors.fill: parent
 | 
					            anchors.fill: parent
 | 
				
			||||||
            spacing: 10
 | 
					            spacing: 10
 | 
				
			||||||
            Item{
 | 
					            Image{
 | 
				
			||||||
                Layout.fillHeight: true
 | 
					 | 
				
			||||||
                Layout.fillWidth: true
 | 
					                Layout.fillWidth: true
 | 
				
			||||||
                Image{
 | 
					                Layout.fillHeight: true
 | 
				
			||||||
                    anchors.fill: parent
 | 
					                anchors.horizontalCenter: parent.horizontalCenter
 | 
				
			||||||
                    fillMode: Image.PreserveAspectFit
 | 
					                fillMode: Image.PreserveAspectFit
 | 
				
			||||||
                    source: "images/crt256.png"
 | 
					                source: "images/crt256.png"
 | 
				
			||||||
                    smooth: true
 | 
					                smooth: true
 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            Text{
 | 
					            Text{
 | 
				
			||||||
                anchors.horizontalCenter: parent.horizontalCenter
 | 
					                anchors.horizontalCenter: parent.horizontalCenter
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user