Separator: clarified setting the ImGuiSeparatorFlags_SpanAllColumns flag. (#759)

Technically a no-op.
This commit is contained in:
ocornut
2023-10-02 15:31:55 +02:00
parent a61438740d
commit 330d763477
3 changed files with 6 additions and 3 deletions

View File

@ -720,7 +720,6 @@ struct ImChunkStream
int offset_from_ptr(const T* p) { IM_ASSERT(p >= begin() && p < end()); const ptrdiff_t off = (const char*)p - Buf.Data; return (int)off; }
T* ptr_from_offset(int off) { IM_ASSERT(off >= 4 && off < Buf.Size); return (T*)(void*)(Buf.Data + off); }
void swap(ImChunkStream<T>& rhs) { rhs.Buf.swap(Buf); }
};
// Helper: ImGuiTextIndex<>