<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GTK] Toggle buttons are blurry with GTK+ 3.19"
   href="https://bugs.webkit.org/show_bug.cgi?id=154007#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [GTK] Toggle buttons are blurry with GTK+ 3.19"
   href="https://bugs.webkit.org/show_bug.cgi?id=154007">bug 154007</a>
              from <span class="vcard"><a class="email" href="mailto:otte&#64;gnome.org" title="Benjamin Otte &lt;otte&#64;gnome.org&gt;"> <span class="fn">Benjamin Otte</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=154007#c3">comment #3</a>)
<span class="quote">&gt; Company's suggestion was to do this:
&gt; 
&gt; if (minWidth &amp;&amp; minHeight) {
&gt;     minSize.setWidth(minWidth);
&gt;     minSize.setHeight(minHeight);
&gt; }
&gt; </span >
To be 100% absolutely exact, it's

if (minWidth)
  minSize.setWidth(minWidth);
if (minHeight)
  minSize.setHeight(minHeight);

because that's what the code in <a href="https://git.gnome.org/browse/gtk+/tree/gtk/gtkbuiltinicon.c#n56">https://git.gnome.org/browse/gtk+/tree/gtk/gtkbuiltinicon.c#n56</a> essentially does.</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>