Moving to using begin_move_rows to move service_items
This commit is contained in:
parent
6d696c43db
commit
a5f49a84d9
2 changed files with 32 additions and 28 deletions
|
|
@ -88,9 +88,7 @@ pub mod song_editor {
|
|||
let split = vo.split(" ");
|
||||
debug!(verse_order = ?vo, iterator = ?split);
|
||||
for s in split {
|
||||
if s.contains(",") {
|
||||
self.as_mut().set_verse_order_error(true);
|
||||
} else if s.is_empty() {
|
||||
if s.contains(",") || s.is_empty() {
|
||||
self.as_mut().set_verse_order_error(true);
|
||||
} else {
|
||||
self.as_mut().set_verse_order_error(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue