diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2023-04-18 20:33:38 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2023-04-19 00:53:40 +0200 |
commit | 61b41646c5a93ca24f2c9f143cdb0da2c9258989 (patch) | |
tree | 0656129e9e1e52e73b948f9580c3cc2d3ff8856d | |
parent | bafec47847a0b9697b3bbe9358e53f8118af3024 (diff) |
tdf#154883 Set doc as modified on applying table style
Change-Id: I2a20f35f8b6730f256216cea718ac9020347f119
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150584
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
-rw-r--r-- | sd/source/ui/table/TableDesignPane.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx index 216cf09b3b59..c5f20588397b 100644 --- a/sd/source/ui/table/TableDesignPane.cxx +++ b/sd/source/ui/table/TableDesignPane.cxx @@ -475,6 +475,7 @@ void TableDesignWidget::ApplyStyle() pBindings->Invalidate( SID_REDO ); } } + setDocumentModified(); } else { @@ -530,6 +531,7 @@ void TableDesignWidget::ApplyOptions() pBindings->Invalidate( SID_REDO ); } } + setDocumentModified(); } void TableDesignWidget::onSelectionChanged() |