InputRequester cuts off text

Post bugreports for the Mac OSX version here
User avatar
PureBasti
User
User
Posts: 10
Joined: Sat Oct 13, 2018 9:02 am

InputRequester cuts off text

Post by PureBasti »

The InputRequester seems to cut off the last word of a given string at certain lengths.

For example the following code line correctly displays the entire string in the InputRequester.

Code: Select all

InputRequester("Lizenzschlüssel", "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod", "")
Image


When we remove the 'od' at the end the 'eirm' is completely cut off in the InputRequester.

Code: Select all

InputRequester("Lizenzschlüssel", "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirm", "")
Image
Bmld756
User
User
Posts: 30
Joined: Mon Sep 19, 2022 3:30 pm

Re: InputRequester cuts off text

Post by Bmld756 »

Hello,
I don't have this issue.

Image
IMAC 21.5 2012 Core I5 - 2.70 Ghz. 16 GB NVIDIA GeForce GT 640M 512 Mo. MacOs OCPL Sequoia 15.0
MacBook Air M1 - 8Go - Sonoma 14.1
User avatar
Mindphazer
Enthusiast
Enthusiast
Posts: 456
Joined: Mon Sep 10, 2012 10:41 am
Location: Savoie

Re: InputRequester cuts off text

Post by Mindphazer »

Bmld756 wrote: Fri Feb 07, 2025 5:01 pm Hello,
I don't have this issue.

Image
Your image shows the result of the first example
Try the second one

On my Mac, i have the same issue as PureBasti
MacBook Pro 16" M4 Pro - 24 Gb - MacOS 15.4.1 - Iphone 15 Pro Max - iPad at home
...and unfortunately... Windows at work...
User avatar
mk-soft
Always Here
Always Here
Posts: 6205
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: InputRequester cuts off text

Post by mk-soft »

Not here, but ich have only a Full-HD monitor
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
infratec
Always Here
Always Here
Posts: 7581
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: InputRequester cuts off text

Post by infratec »

I think it would be good to know the PB version and the OS version which is in use.
Maybe also the hardware is from interrest.
Lebostein
Addict
Addict
Posts: 826
Joined: Fri Jun 11, 2004 7:07 am

Re: InputRequester cuts off text

Post by Lebostein »

It seems line breaks are allowed:

Code: Select all

InputRequester("Lizenzschlüssel", "Lorem ipsum dolor sit amet,"+#CR$+"consetetur sadipscing elitr, sed diam nonumy eirm", "")
If the line length is fixed, then PB should perhaps insert line breaks automatically?
Post Reply