FIX: Delete row/column formatting
Also clear formatting clears all formatting including row/column
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
6ee450709a
commit
ce6c908dc7
@@ -77,6 +77,16 @@ pub(crate) enum Diff {
|
||||
old_value: Box<Option<Style>>,
|
||||
new_value: Box<Style>,
|
||||
},
|
||||
DeleteColumnStyle {
|
||||
sheet: u32,
|
||||
column: i32,
|
||||
old_value: Box<Option<Style>>,
|
||||
},
|
||||
DeleteRowStyle {
|
||||
sheet: u32,
|
||||
row: i32,
|
||||
old_value: Box<Option<Style>>,
|
||||
},
|
||||
InsertRow {
|
||||
sheet: u32,
|
||||
row: i32,
|
||||
|
||||
Reference in New Issue
Block a user