https://bugs.documentfoundation.org/show_bug.cgi?id=97409

--- Comment #1 from Michael Meeks <[email protected]> ---
Very similar to: https://bz.apache.org/ooo/show_bug.cgi?id=104181 mentioned
here:

    void ControlHolder::setPosSize( const Rectangle& _rPosSize ) const
    {
        // no check whether we're valid, this is the responsibility of the
caller

        // don't call setPosSize when pos/size did not change
        // #i104181# / 2009-08-18 / [email protected]
        ::Rectangle aCurrentRect( getPosSize() );
        if ( aCurrentRect != _rPosSize )
        {
            m_xControlWindow->setPosSize(
                _rPosSize.Left(), _rPosSize.Top(), _rPosSize.GetWidth(),
_rPosSize.GetHeight(),
                POSSIZE
            );
        }
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to