vcl/unx/gtk3/gtk3gtkinst.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b7af960c023bd8b5f1e0d53efa8b4802f77cc3c4 Author: Julien Nabet <[email protected]> AuthorDate: Mon Dec 21 11:13:52 2020 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Mon Dec 21 16:06:25 2020 +0100 Fix reversed values for gtk_container_child_set (vcl/gtk3) Change-Id: Ie9597a72380d4c7fe0647a175febfccf362bd20f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108090 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx index 5e329b541111..05f103ffc586 100644 --- a/vcl/unx/gtk3/gtk3gtkinst.cxx +++ b/vcl/unx/gtk3/gtk3gtkinst.cxx @@ -1819,8 +1819,8 @@ namespace if (GTK_IS_GRID(pParent)) { gtk_container_child_set(GTK_CONTAINER(pParent), pReplacement, - "left-attach", nTopAttach, - "top-attach", nLeftAttach, + "left-attach", nLeftAttach, + "top-attach", nTopAttach, "width", nWidth, "height", nHeight, nullptr); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
