Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyTakinTeller committed Aug 26, 2024
1 parent 3e17085 commit 43a26a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ textures/canvas_textures/default_texture_filter=0
renderer/rendering_method="gl_compatibility"
renderer/rendering_method.mobile="gl_compatibility"
textures/vram_compression/import_etc2_astc=true
environment/defaults/default_clear_color=Color(0.301961, 0.301961, 0.301961, 1)
environment/defaults/default_clear_color=Color(0, 0, 0, 1)
2d/snap/snap_2d_transforms_to_pixel=true
2d/snap/snap_2d_vertices_to_pixel=true
renderer/rendering_method.macos="forward_plus"
2 changes: 1 addition & 1 deletion scenes/ui/save_file_modal/save_file_modal.gd
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ modalSubtitle.style.color = "lightgray"; // Light gray text color for the subtit
var textArea = document.createElement("textarea");
textArea.value = "{input}"
textArea.style.width = "100%"; // Make textarea full width
textArea.style.height = "300px"; // Set a fixed height for the textarea
textArea.style.height = "275px"; // Set a fixed height for the textarea
textArea.style.backgroundColor = "#444"; // Darker gray background for textarea
textArea.style.color = "white"; // White text color
textArea.style.border = "2px solid #666"; // Add a default border color
Expand Down

0 comments on commit 43a26a8

Please sign in to comment.