Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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