]> git.lyx.org Git - lyx.git/blobdiff - src/BufferParams.cpp
Fix some group boxes.
[lyx.git] / src / BufferParams.cpp
index 887dfa3de944ab2118357cc80ca611dbc0ca89fa..de46966f2e29573fe9162d6a73ca4eb758280961 100644 (file)
@@ -2440,6 +2440,7 @@ void BufferParams::useClassDefaults()
        sides = tclass.sides();
        columns = tclass.columns();
        pagestyle = tclass.pagestyle();
+       tablestyle = tclass.tablestyle();
        use_default_options = true;
        // Only if class has a ToC hierarchy
        if (tclass.hasTocLevels()) {
@@ -2456,6 +2457,7 @@ bool BufferParams::hasClassDefaults() const
        return sides == tclass.sides()
                && columns == tclass.columns()
                && pagestyle == tclass.pagestyle()
+               && tablestyle == tclass.tablestyle()
                && use_default_options
                && secnumdepth == tclass.secnumdepth()
                && tocdepth == tclass.tocdepth();