mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 19:08:05 +08:00
Remove trailing zeros in rendered SVG path output
This commit is contained in:
@@ -155,7 +155,10 @@ impl LayoutHolder for PathTool {
|
||||
})
|
||||
.tooltip(colinear_handles_tooltip)
|
||||
.widget_holder();
|
||||
let colinear_handles_label = TextLabel::new("Colinear Handles").tooltip(colinear_handles_tooltip).widget_holder();
|
||||
let colinear_handles_label = TextLabel::new("Colinear Handles")
|
||||
.disabled(self.tool_data.selection_status.is_none())
|
||||
.tooltip(colinear_handles_tooltip)
|
||||
.widget_holder();
|
||||
|
||||
Layout::WidgetLayout(WidgetLayout::new(vec![LayoutGroup::Row {
|
||||
widgets: vec![
|
||||
|
||||
Reference in New Issue
Block a user