<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - GTK3: Border around logo in about dialog"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=130128#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - GTK3: Border around logo in about dialog"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=130128">bug 130128</a>
              from <span class="vcard"><a class="email" href="mailto:caolanm@redhat.com" title="Caolán McNamara <caolanm@redhat.com>"> <span class="fn">Caolán McNamara</span></a>
</span></b>
        <pre>a debugging patch of...

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index c4b58aaebc67..0b963d43bd10 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -3112,6 +3112,9 @@ namespace
         vcl::PNGWriter aWriter(aImage.GetBitmapEx(), &aFilterData);
         aWriter.Write(*xMemStm);

+        SvFileStream aStream("/tmp/dumpme.png", StreamMode::STD_READWRITE |
StreamMode::TRUNC);
+        aWriter.Write(aStream);
+
         return load_icon_from_stream(*xMemStm, "png");
     }

gives... a png with a white bg after the change and a transparent one before
the change</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>