/usr/share/denemo/actions/editscripts/StringNum.scm is in denemo-data 2.0.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ;;; tweak position of StringNumber inserted by StringNum
;;; note SetPadding and SetRelativeFontSize and ExtraOffset take the grob name "StringNumber", not the tag which is StringNum
;; FIXME common code with LHFinger.scm
(let ((choice #f))
(begin
(set! choice
(d-GetOption (string-append cue-OffsetPositionAll stop cue-SetPadding stop cue-SetRelativeFontSize stop cue-Advanced stop)))
(cond
((boolean? choice)
(d-WarningDialog "Operation cancelled"))
((equal? choice cue-Advanced)
(d-DirectiveTextEdit-note "StringNum"))
((equal? choice cue-OffsetPositionAll)
(ExtraOffset "StringNumber"))
((equal? choice cue-SetRelativeFontSize)
(SetRelativeFontSize "StringNumber"))
((equal? choice cue-SetPadding)
(SetPadding "StringNumber")))))
(d-RefreshDisplay)
|