Skip to content

Commit

Permalink
patching
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzanardo committed Dec 12, 2023
1 parent f6c9052 commit de7b018
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/views/editor_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ class _PatchEditViewState extends State<_PatchEditView> {
children: [
Row(
children: [
const Text('Path Top'),
const Text('Patch Top'),
Switch(
value: _patch.patchTop,
onChanged: (value) {
Expand All @@ -557,7 +557,7 @@ class _PatchEditViewState extends State<_PatchEditView> {
const SizedBox(height: 8),
Row(
children: [
const Text('Path Bottom'),
const Text('Patch Bottom'),
Switch(
value: _patch.patchBottom,
onChanged: (value) {
Expand All @@ -571,7 +571,7 @@ class _PatchEditViewState extends State<_PatchEditView> {
const SizedBox(height: 8),
Row(
children: [
const Text('Path Left'),
const Text('Patch Left'),
Switch(
value: _patch.patchLeft,
onChanged: (value) {
Expand All @@ -585,7 +585,7 @@ class _PatchEditViewState extends State<_PatchEditView> {
const SizedBox(height: 8),
Row(
children: [
const Text('Path Right'),
const Text('Patch Right'),
Switch(
value: _patch.patchRight,
onChanged: (value) {
Expand Down

0 comments on commit de7b018

Please sign in to comment.