mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
Fix typos in code
This commit is contained in:
parent
9ae93a1387
commit
23df5a3d15
5
.github/workflows/static-checks.yml
vendored
5
.github/workflows/static-checks.yml
vendored
|
@ -26,7 +26,8 @@ jobs:
|
|||
- name: Linting checks
|
||||
run: gdlint .
|
||||
- name: Spell checks via codespell
|
||||
uses: codespell-project/actions-codespell@v1
|
||||
uses: codespell-project/actions-codespell@v2
|
||||
with:
|
||||
skip: ./addons,*.po
|
||||
ignore_words_list: chello,doubleclick
|
||||
exclude_file: src/UI/Dialogs/AboutDialog.gd
|
||||
ignore_words_list: chello,doubleclick,Manuel
|
||||
|
|
|
@ -272,7 +272,7 @@ func set_integer_zoom(enabled: bool):
|
|||
else:
|
||||
zoom_slider.snap_step = 1
|
||||
zoom_slider.step = 1
|
||||
zoom_slider.value = zoom_slider.value # to trigger signal emmission
|
||||
zoom_slider.value = zoom_slider.value # to trigger signal emission
|
||||
|
||||
|
||||
func _initialize_keychain() -> void:
|
||||
|
|
|
@ -72,7 +72,7 @@ func _define_js() -> void:
|
|||
|
||||
|
||||
# If (load_directly = false) then image info (image and its name)
|
||||
# will not be directly farwarded it to OpenSave
|
||||
# will not be directly forwarded it to OpenSave
|
||||
func load_image(load_directly := true):
|
||||
if OS.get_name() != "HTML5" or !OS.has_feature("JavaScript"):
|
||||
return
|
||||
|
|
|
@ -11,7 +11,7 @@ onready var scroll_container := $"%ScrollContainer"
|
|||
|
||||
|
||||
func _ready() -> void:
|
||||
# Hide default scollbars
|
||||
# Hide default scrollbars
|
||||
scroll_container.get_h_scrollbar().rect_scale = Vector2.ZERO
|
||||
scroll_container.get_v_scrollbar().rect_scale = Vector2.ZERO
|
||||
|
||||
|
|
Loading…
Reference in a new issue