Skip Menu |

This queue is for tickets about the Curses-UI CPAN distribution.

Report information
The Basics
Id: 25083
Status: new
Priority: 0/
Queue: Curses-UI

People
Owner: Nobody in particular
Requestors: justice8 [...] wanadoo.fr
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Notebook without (sb)border set to true lead to exit a Curses::UI app
Hi, on line 120 of Curses/UI/Notebook.pm: return unless ($args{-border} or $args{-sbborder}); do this lead to close running app, which is not a clean behavior AMHA. So, it will be better to force border argument to true instead by doing something like this (tested successfully): $args{-border} = 1 unless ($args{-border} or $args{-sbborder}); Regards.