Skip to content

Commit

Permalink
feat: skip text effect blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Dec 30, 2023
1 parent 507a99a commit efa7c42
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,9 +608,18 @@ export class Entry {
text_prepend(str: string, obj: EntryText) {
obj.text = str + obj.text
}
text_change_effect() {
console.log("skip (todo):", "text_change_effect")
}
text_change_font() {
console.log("skip (todo):", "text_change_font")
}
text_change_font_color(color: string, obj: EntryText) {
obj.colour = color
}
text_change_bg_color() {
console.log("skip (todo):", "text_change_bg_color")
}
text_flush(obj: EntryText) {
obj.text = ""
}
Expand Down

0 comments on commit efa7c42

Please sign in to comment.