You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(AC): Added placeholder on News tab when settings are disabled
It creates a component placeholder for both `Enable RSS Notifications` and `Enable Status News` information panel and integrates it into the AC logic.
Closes#17795
text:newsPanelLayout.isEnableRSSNotificationPanelType?qsTr("Enable RSS to receive Status News notifications") :
572
+
qsTr("Enable Status News notifications")
573
+
font.weight:Font.Bold
574
+
lineHeight:1.2
575
+
horizontalAlignment:Text.AlignHCenter
576
+
wrapMode:Text.WordWrap
577
+
}
578
+
579
+
StatusBaseText {
580
+
Layout.alignment:Qt.AlignHCenter
581
+
Layout.maximumWidth:parent.width
582
+
583
+
font.pixelSize:Theme.additionalTextSize
584
+
color:Theme.palette.baseColor1
585
+
text:newsPanelLayout.isEnableRSSNotificationPanelType?qsTr("RSS is currently disabled via your Privacy & Security settings. Enable RSS to receive Status News notifications about upcoming features and important announcements.") :
586
+
qsTr("This feature is currently turned off. Enable Status News notifications to receive notifications about upcoming features and important announcements")
0 commit comments