Skip to main content
justadaniel
Participant
February 21, 2023

Panel resizing in vertical axis doesn't work

  • February 21, 2023
  • 7 replies
  • 956 views

Hi, I'm working on a CEP plugin for Premiere and Media Encoder. There's this bug I can't seem to get around where the renderer's bounds aren't resizing on the vertical axis properly. It looks like this bug has been persisting for quite some time now as it dates back to at least AME 22.5 (minimum version installed for my plugin) from what I can tell. Sometimes it's rendering the "Queue" panel behind it. The horizontal axis resizes just fine, but the vertical is just plain stuck.

 

In the web inspector screenshot, the height is staying at a constant 956 pixels tall.

7 replies

Participant
February 10, 2026

Finally found someone with the same issue. There is no documentation at all about this behavior in AME, and no explanation of why the panel height is locked or behaves differently across machines.

I can confirm this issue is still happening in 2026.

On my machine, the panel height seems to be locked to 256.33px, while on a colleague’s machine it is locked to 400px. The value appears to be fixed per system and cannot be changed.

There does not seem to be any consistent relationship with screen resolution, UI scaling, or the values defined in the manifest.

Adobe Employee
March 7, 2023

This bug is low priority. I would suggest that you build a windowed application.

justadaniel
Participant
March 5, 2023

Hey, do you happen to know what level of priority this issue is? I'm wanting to release a plugin, but I don't know if I should release it as a panel or a separate window. 

Thanks!

justadaniel
Participant
February 27, 2023
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<ExtensionManifest
Version="6.0"
ExtensionBundleId="com.justadaniel.wrendertime"
ExtensionBundleVersion="0.0.2.16"
ExtensionBundleName="WrenderTime"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>
<ExtensionList>
  <Extension Id="com.justadaniel.wrendertime.settings" Version="0.0.2.16" />
</ExtensionList>
<ExecutionEnvironment>
  <HostList>
    <Host Name="AME" Version="22.1" />
  </HostList>
  <LocaleList>
    <Locale Code="All" />
  </LocaleList>
  <RequiredRuntimeList>
    <RequiredRuntime Name="CSXS" Version="11.0" />
  </RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
  <Extension Id="com.justadaniel.wrendertime.settings">
    <DispatchInfo>
      <Resources>
        <MainPath>./settings/index.html</MainPath>
        <CEFCommandLine>
          <Parameter>--v=5</Parameter>
          <Parameter>--enable-nodejs</Parameter>
          <Parameter>--mixed-context</Parameter>
          <Parameter>--enable-media-stream</Parameter>
          <Parameter>--disable-site-isolation-trials</Parameter>
        </CEFCommandLine>
      </Resources>
      <Lifecycle>
        <AutoVisible>true</AutoVisible>
      </Lifecycle>
      <UI>
        <Type>Panel</Type>
        <Menu>WrenderTime - Settings</Menu>
        <Geometry>
          <Size>
            <Width>600</Width>
            <Height>700</Height>
          </Size>
        </Geometry>
        <Icons>
          <Icon Type="Normal">./src/assets/dark-icon.png</Icon>
          <Icon Type="DarkNormal">./src/assets/light-icon.png</Icon>
          <Icon Type="RollOver">./src/assets/dark-icon.png</Icon>
          <Icon Type="DarkRollOver">./src/assets/light-icon.png</Icon>
        </Icons>
      </UI>
    </DispatchInfo>
  </Extension>
</DispatchInfoList>
</ExtensionManifest>
Adobe Employee
February 27, 2023

Can you share your manifest file?

Adobe Employee
February 22, 2023

I will file a bug for this. Thanks for letting us know.

Justin Taylor-Hyper Brew
Community Expert
Community Expert
February 21, 2023

Can confirm this issue in CEP panels for AME has existed back to 2018-2017. Since AME scripting is now officially supported, would be great to get this one fixed!