Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions meshroom/ui/qml/Controls/ColorSelector.qml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ MaterialToolButton {
"#C16162",
]

// When a color gets selected/choosen
// When a color gets selected/chosen
Copy link

Copilot AI Sep 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good fix - corrected the spelling from 'choosen' to 'chosen'.

Copilot uses AI. Check for mistakes.
signal colorSelected(var color)

// Toggles the visibility of the popup
Expand Down Expand Up @@ -64,9 +64,9 @@ MaterialToolButton {
padding: 4
width: (root.height * 4) + (padding * 4)

// center the current color
// Center the current color on the tool button
y: -height
x: -width + root.width + padding
x: -width / 2 + (root.width + padding) / 2

// Layout of the Colors
Grid {
Expand Down
Loading