Skip to content

Commit

Permalink
fix:full_width_pages
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Nov 17, 2024
1 parent c7bbc11 commit b77ebcf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_AnimatedImageFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Mycroft.Delegate {
skillBackgroundColorOverlay: sessionData.background_color ? sessionData.background_color : "#000000"
property bool hasTitle: sessionData.title.length > 0 ? true : false
property bool hasCaption: sessionData.caption.length > 0 ? true : false
fillWidth: true

ColumnLayout {
id: systemImageFrameLayout
Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_HtmlFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft
Mycroft.Delegate {
id: systemHtmlFrame
skillBackgroundColorOverlay: "#000000"
fillWidth: true

Loader {
id: webViewHtmlLoader
Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_ImageFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Mycroft.Delegate {
skillBackgroundColorOverlay: sessionData.background_color ? sessionData.background_color : "#000000"
property bool hasTitle: sessionData.title.length > 0 ? true : false
property bool hasCaption: sessionData.caption.length > 0 ? true : false
fillWidth: true

ColumnLayout {
id: systemImageFrameLayout
Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_TextFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Mycroft.CardDelegate {
id: systemTextFrame
skillBackgroundColorOverlay: "#000000"
cardBackgroundOverlayColor: "#000000"
fillWidth: true

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

Expand Down
1 change: 1 addition & 0 deletions ovos_gui/res/gui/qt5/SYSTEM_UrlFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Mycroft 1.0 as Mycroft
Mycroft.AbstractDelegate {
id: systemUrlFrame
property var pageUrl: sessionData.url
fillWidth: true

onPageUrlChanged: {
if(typeof pageUrl !== "undefined" || typeof pageUrl !== null){
Expand Down

0 comments on commit b77ebcf

Please sign in to comment.