Skip to content

Commit 37726bc

Browse files
authored
fix:full_width_pages (#60)
1 parent c7bbc11 commit 37726bc

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Mycroft.Delegate {
1010
skillBackgroundColorOverlay: sessionData.background_color ? sessionData.background_color : "#000000"
1111
property bool hasTitle: sessionData.title.length > 0 ? true : false
1212
property bool hasCaption: sessionData.caption.length > 0 ? true : false
13+
fillWidth: true
1314

1415
ColumnLayout {
1516
id: systemImageFrameLayout

ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft
88
Mycroft.Delegate {
99
id: systemHtmlFrame
1010
skillBackgroundColorOverlay: "#000000"
11+
fillWidth: true
1112

1213
Loader {
1314
id: webViewHtmlLoader

ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Mycroft.Delegate {
1010
skillBackgroundColorOverlay: sessionData.background_color ? sessionData.background_color : "#000000"
1111
property bool hasTitle: sessionData.title.length > 0 ? true : false
1212
property bool hasCaption: sessionData.caption.length > 0 ? true : false
13+
fillWidth: true
1314

1415
ColumnLayout {
1516
id: systemImageFrameLayout

ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Mycroft.CardDelegate {
99
id: systemTextFrame
1010
skillBackgroundColorOverlay: "#000000"
1111
cardBackgroundOverlayColor: "#000000"
12+
fillWidth: true
1213

1314
property bool hasTitle: sessionData.title.length > 0 ? true : false
1415

ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft
88
Mycroft.AbstractDelegate {
99
id: systemUrlFrame
1010
property var pageUrl: sessionData.url
11+
fillWidth: true
1112

1213
onPageUrlChanged: {
1314
if(typeof pageUrl !== "undefined" || typeof pageUrl !== null){

0 commit comments

Comments
 (0)