mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
ncselector_create: fix base_egc fuckup #302
This commit is contained in:
parent
6a4cfcde95
commit
99b79cbf4f
@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
project(notcurses VERSION 1.1.2
|
||||
project(notcurses VERSION 1.1.3
|
||||
DESCRIPTION "UI for modern terminal emulators"
|
||||
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
|
||||
LANGUAGES C CXX)
|
||||
|
@ -170,7 +170,7 @@ ncselector* ncselector_create(ncplane* n, int y, int x, const selector_options*
|
||||
goto freeitems;
|
||||
}
|
||||
if(ncplane_set_base(ns->ncp, opts->bgchannels, 0,
|
||||
opts->base_egc ? opts->base_egc : "")){
|
||||
opts->base_egc ? opts->base_egc : "") < 0){
|
||||
ncplane_destroy(ns->ncp);
|
||||
goto freeitems;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user