diff --git a/Changelog b/Changelog index f3b506e8..ce546cfa 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,11 @@ +unreleased + New Features + Improvements + - Allow user to use X11 background for fake transparency (#390) + - Allow user to specify background image. + - Improved keybinding handling, allowing on-release and modifier only (#384). + Bug fixes + 1.0.1 Bug fixes - Fix typo in manpage. diff --git a/include/textbox.h b/include/textbox.h index afadd9e4..e08b88ed 100644 --- a/include/textbox.h +++ b/include/textbox.h @@ -39,15 +39,15 @@ typedef struct typedef enum { - TB_AUTOHEIGHT = 1 << 0, - TB_AUTOWIDTH = 1 << 1, - TB_LEFT = 1 << 16, - TB_RIGHT = 1 << 17, - TB_CENTER = 1 << 18, - TB_EDITABLE = 1 << 19, - TB_MARKUP = 1 << 20, - TB_WRAP = 1 << 21, - TB_PASSWORD = 1 << 22, + TB_AUTOHEIGHT = 1 << 0, + TB_AUTOWIDTH = 1 << 1, + TB_LEFT = 1 << 16, + TB_RIGHT = 1 << 17, + TB_CENTER = 1 << 18, + TB_EDITABLE = 1 << 19, + TB_MARKUP = 1 << 20, + TB_WRAP = 1 << 21, + TB_PASSWORD = 1 << 22, } TextboxFlags; typedef enum