mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 23:09:26 -05:00
more ?.
This commit is contained in:
@@ -19,11 +19,11 @@ import org.kde.syntaxhighlighting
|
||||
|
||||
ColumnLayout {
|
||||
// These are needed on the parent loader
|
||||
property bool editing: parent.editing ?? false
|
||||
property bool renderMarkdown: parent.renderMarkdown ?? true
|
||||
property bool enableMouseSelection: parent.enableMouseSelection ?? false
|
||||
property var segment: parent.segment ?? {}
|
||||
property var messageData: parent.messageData ?? {}
|
||||
property bool editing: parent?.editing ?? false
|
||||
property bool renderMarkdown: parent?.renderMarkdown ?? true
|
||||
property bool enableMouseSelection: parent?.enableMouseSelection ?? false
|
||||
property var segment: parent?.segment ?? {}
|
||||
property var messageData: parent?.messageData ?? {}
|
||||
|
||||
spacing: codeBlockComponentSpacing
|
||||
anchors.left: parent.left
|
||||
|
||||
@@ -17,11 +17,11 @@ import Quickshell.Hyprland
|
||||
|
||||
TextArea {
|
||||
// These are needed on the parent loader
|
||||
property bool editing: parent.editing ?? false
|
||||
property bool renderMarkdown: parent.renderMarkdown ?? true
|
||||
property bool enableMouseSelection: parent.enableMouseSelection ?? false
|
||||
property var segment: parent.segment ?? {}
|
||||
property var messageData: parent.messageData ?? {}
|
||||
property bool editing: parent?.editing ?? false
|
||||
property bool renderMarkdown: parent?.renderMarkdown ?? true
|
||||
property bool enableMouseSelection: parent?.enableMouseSelection ?? false
|
||||
property var segment: parent?.segment ?? {}
|
||||
property var messageData: parent?.messageData ?? {}
|
||||
|
||||
Layout.fillWidth: true
|
||||
readOnly: !editing
|
||||
|
||||
Reference in New Issue
Block a user