<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Palette is only resizable when showCloseButton is set to true in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8797594#M14169</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;After a recent update (not sure exactly which one) palettes became resizable only when showCloseButton is set to true. So even if I set that palette is resizable it is not going to work if showCloseButton is false.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Information on when this is going to be fixed would be appreciated.&lt;/P&gt;</description>
    <pubDate>Fri, 17 May 2019 10:06:23 GMT</pubDate>
    <dc:creator>rolandas_vegis</dc:creator>
    <dc:date>2019-05-17T10:06:23Z</dc:date>
    <item>
      <title>Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8797594#M14169</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;After a recent update (not sure exactly which one) palettes became resizable only when showCloseButton is set to true. So even if I set that palette is resizable it is not going to work if showCloseButton is false.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Information on when this is going to be fixed would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 10:06:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8797594#M14169</guid>
      <dc:creator>rolandas_vegis</dc:creator>
      <dc:date>2019-05-17T10:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8798061#M14170</link>
      <description>&lt;P&gt;I tried on latest code on Mac but not able to see the problem. The palette can be resized by pulling the right-bottom corner.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;app = adsk.core.Application.get()&lt;/P&gt;
&lt;P&gt;ui = app.userInterface&lt;/P&gt;
&lt;P&gt;palettes = ui.palettes&lt;/P&gt;
&lt;P&gt;palette = palettes.add('Test1','Test1','&lt;A href="https://autodesk.com',True,True,True" target="_blank"&gt;https://autodesk.com',True,True,True&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 13:24:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8798061#M14170</guid>
      <dc:creator>goyals</dc:creator>
      <dc:date>2019-05-17T13:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8798298#M14171</link>
      <description>&lt;P&gt;Yes in your example it works, because you have showCloseButton set to True. It does not work if showCloseButton is False.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I edited your example, try it again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="-qt-block-indent: 0; text-indent: 0px; -qt-user-state: 0; margin: 0px;"&gt;app = adsk.core.Application.get()&lt;/P&gt;
&lt;P style="-qt-block-indent: 0; text-indent: 0px; -qt-user-state: 0; margin: 0px;"&gt;ui = app.userInterface&lt;/P&gt;
&lt;P style="-qt-block-indent: 0; text-indent: 0px; -qt-user-state: 0; margin: 0px;"&gt;palettes = ui.palettes&lt;/P&gt;
&lt;P style="-qt-block-indent: 0; text-indent: 0px; -qt-user-state: 0; margin: 0px;"&gt;palettes.add('Test1','Test1','&lt;A href="https://autodesk.com',True,False,True" target="_blank"&gt;https://autodesk.com',True,False,True&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 15:08:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8798298#M14171</guid>
      <dc:creator>rolandas_vegis</dc:creator>
      <dc:date>2019-05-17T15:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8802085#M14172</link>
      <description>&lt;P&gt;Mistakenly I pasted the wrong code. I tried even setting showCloseButton to False but still I was able to resize the window.&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 13:59:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8802085#M14172</guid>
      <dc:creator>goyals</dc:creator>
      <dc:date>2019-05-20T13:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8802392#M14173</link>
      <description>&lt;P&gt;That's interesting. Maybe it is Windows specific issue then. I tried it on 3 PC (all Windows) and I can reproduce it 100% of the time. Could you try it on Windows?&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 15:44:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8802392#M14173</guid>
      <dc:creator>rolandas_vegis</dc:creator>
      <dc:date>2019-05-20T15:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8803833#M14174</link>
      <description>&lt;P&gt;Yes it is a windows specific issue. I created ticket&amp;nbsp;UP-42499 to investigate it further. Thanks for reporting it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2019 07:25:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/8803833#M14174</guid>
      <dc:creator>goyals</dc:creator>
      <dc:date>2019-05-21T07:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/9021915#M14175</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4379367"&gt;@rolandas_vegis&lt;/a&gt;&amp;nbsp; - happy to report that we got this issue fixed and will be rolling it out in the upcoming update. Thanks again for your help on spotting this bug!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 16:44:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/9021915#M14175</guid>
      <dc:creator>keqingsong</dc:creator>
      <dc:date>2019-09-12T16:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Palette is only resizable when showCloseButton is set to true</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/9043165#M14176</link>
      <description>&lt;P&gt;Yes, I see that the problem is fixed, but the fix is not ideal.&lt;/P&gt;&lt;P&gt;The palettes now always have the bottom space which was reserved for the close button and since it changed the palette height, our palettes now have scrollbars in them. While fixing the scrollbars only requires a palette size change (and an add-in update for the users) it still looks a little weird with empty space at the bottom.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 872px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/680379i99BC5FCE58DB916D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be nice if the empty space at the bottom could be removed.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 11:46:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/palette-is-only-resizable-when-showclosebutton-is-set-to-true/m-p/9043165#M14176</guid>
      <dc:creator>rolandas_vegis</dc:creator>
      <dc:date>2019-09-24T11:46:28Z</dc:date>
    </item>
  </channel>
</rss>

