mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
13 lines
373 B
QML
13 lines
373 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
Action {
|
|
property string wrapper
|
|
icon.width: 12
|
|
icon.height: 16
|
|
onTriggered: textFormatMenu.surroundedBy(wrapper) ?
|
|
unwrapSelection(wrapper, textFormatMenu.selectedTextWithFormationChars) :
|
|
wrapSelection(wrapper)
|
|
checked: textFormatMenu.surroundedBy(wrapper)
|
|
}
|