NText: Reverted my change to support Richtext by default + All tooltips are no longer using capital letter at the start of every word
This commit is contained in:
parent
4ad851fdd2
commit
53405c13af
19 changed files with 66 additions and 68 deletions
|
|
@ -29,7 +29,7 @@ NPanel {
|
|||
|
||||
NIconButton {
|
||||
icon: "chevron_left"
|
||||
tooltipText: "Previous Month"
|
||||
tooltipText: "Previous month"
|
||||
onClicked: {
|
||||
let newDate = new Date(grid.year, grid.month - 1, 1)
|
||||
grid.year = newDate.getFullYear()
|
||||
|
|
@ -48,7 +48,7 @@ NPanel {
|
|||
|
||||
NIconButton {
|
||||
icon: "chevron_right"
|
||||
tooltipText: "Next Month"
|
||||
tooltipText: "Next month"
|
||||
onClicked: {
|
||||
let newDate = new Date(grid.year, grid.month + 1, 1)
|
||||
grid.year = newDate.getFullYear()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue