Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

CEP-Extension Remove or hide resize widget.

New Here ,
Dec 29, 2024 Dec 29, 2024

Hi everyone can anyone help me to remove this resize widget in the botton corner " resize handle" in this toolbar panel I don't find a way to do it. Dont look stetic over the add button.Screenshot 2024-12-30 024500.png

TOPICS
Actions and scripting , SDK , Windows
493
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 2 Correct answers

Enthusiast , Dec 29, 2024 Dec 29, 2024

If the panel is cep
You need to edit the manifest.xml file
These are the values ​​you need to change.
<Geometry> <Size> <Width>300</Width> <Height>555</Height> </Size> </Geometry>
If it is a uxp panel, you need to edit the manifest. json
In the manifest file put the 4 equal height values,
And equal width
See below
minimumSize": {
"width": 240,
"height": 840
},
"maximumSize": {
"width": 240,
"height": 840
},
"preferredDockedSize": {
"width": 240,
"height": 840
},
"preferredFloatingSize": {
"width": 240,
"height": 840
}

...
Translate
Community Beginner , Dec 30, 2024 Dec 30, 2024

You must modify the manifest.xml file if the panel is missing.
These are the values that you must alter.
\Size> \Geometry> \Width>300</Width> \Height>555</Height> \/Size> \/Geometry>
You must alter the manifest if it's an uxp panel. JSON
Place the four equal height values in the manifest file.
and the same width
View below
minimumSize": {"width": 240, "height": 840}, "maximumSize": {"width": 240, "height": 840}, "preferredDockedSize": {"width": 240, "height": 840}, "preferredFloatingSize": {

Translate
Adobe
Enthusiast ,
Dec 29, 2024 Dec 29, 2024

If the panel is cep
You need to edit the manifest.xml file
These are the values ​​you need to change.
<Geometry> <Size> <Width>300</Width> <Height>555</Height> </Size> </Geometry>
If it is a uxp panel, you need to edit the manifest. json
In the manifest file put the 4 equal height values,
And equal width
See below
minimumSize": {
"width": 240,
"height": 840
},
"maximumSize": {
"width": 240,
"height": 840
},
"preferredDockedSize": {
"width": 240,
"height": 840
},
"preferredFloatingSize": {
"width": 240,
"height": 840
},

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Dec 30, 2024 Dec 30, 2024

You must modify the manifest.xml file if the panel is missing.
These are the values that you must alter.
\Size> \Geometry> \Width>300</Width> \Height>555</Height> \/Size> \/Geometry>
You must alter the manifest if it's an uxp panel. JSON
Place the four equal height values in the manifest file.
and the same width
View below
minimumSize": {"width": 240, "height": 840}, "maximumSize": {"width": 240, "height": 840}, "preferredDockedSize": {"width": 240, "height": 840}, "preferredFloatingSize": {

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 30, 2024 Dec 30, 2024

Thanks a lot guy's so the only way is to set the same size for the width and height this is so limited I need the verticall resize for the toolbar bu this little square appear. Its possible to make the panel resize aumatic when adding new iconButton to the toolbar.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Dec 30, 2024 Dec 30, 2024
LATEST
quote

Thanks a lot guy's so the only way is to set the same size for the width and height this is so limited I need the verticall resize for the toolbar bu this little square appear. Its possible to make the panel resize aumatic when adding new iconButton to the toolbar.


By @Kakachiex_x2025

Unfortunately it is not possible to do so.
For the square, if it is a uxp panel you can remove it.
This is the code
window.require('photoshop').core.suppressResizeGripper(
{
"type": "panel",
"target": "com.jdp.frames",
"value": true
})

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines