2021-04-21 18:18:52 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
|
|
|
|
Action {
|
|
|
|
property string wrapper
|
|
|
|
icon.width: 12
|
|
|
|
icon.height: 16
|
2021-04-21 19:46:58 +00:00
|
|
|
onTriggered: textFormatMenu.surroundedBy(wrapper) ?
|
|
|
|
unwrapSelection(wrapper, textFormatMenu.selectedTextWithFormationChars) :
|
|
|
|
wrapSelection(wrapper)
|
2021-04-21 18:18:52 +00:00
|
|
|
checked: textFormatMenu.surroundedBy(wrapper)
|
|
|
|
}
|