mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-10-31 15:20:13 +00:00
Plane.hh: fix up indentation #1020
This commit is contained in:
parent
97dc50db1a
commit
73f9973a2c
@ -1111,19 +1111,19 @@ namespace ncpp
|
||||
|
||||
ncplane* create_plane (Plane &n, int rows, int cols, int yoff, NCAlign align, void *opaque)
|
||||
{
|
||||
ncplane_options nopts = {
|
||||
yoff,
|
||||
static_cast<ncalign_e>(align),
|
||||
rows,
|
||||
cols,
|
||||
opaque,
|
||||
nullptr,
|
||||
0
|
||||
};
|
||||
ncplane_options nopts = {
|
||||
yoff,
|
||||
static_cast<ncalign_e>(align),
|
||||
rows,
|
||||
cols,
|
||||
opaque,
|
||||
nullptr,
|
||||
0
|
||||
};
|
||||
ncplane *ret = ncplane_create (
|
||||
n.plane,
|
||||
&nopts
|
||||
);
|
||||
n.plane,
|
||||
&nopts
|
||||
);
|
||||
|
||||
if (ret == nullptr)
|
||||
throw init_error ("Notcurses failed to create an aligned plane");
|
||||
|
Loading…
Reference in New Issue
Block a user