diff options
author | Simon Howard | 2010-12-10 23:46:22 +0000 |
---|---|---|
committer | Simon Howard | 2010-12-10 23:46:22 +0000 |
commit | d1a3967194323b08227b20822acedb837e05281a (patch) | |
tree | 39e4f4da91717159f4f82e6eb37c9fb32d306892 /textscreen/txt_separator.c | |
parent | 6a2d4763a9080cf88ca9f0b588b8187963eeacf5 (diff) | |
parent | e225e0c93ce58bb0e33c174847305d39800fd755 (diff) | |
download | chocolate-doom-d1a3967194323b08227b20822acedb837e05281a.tar.gz chocolate-doom-d1a3967194323b08227b20822acedb837e05281a.tar.bz2 chocolate-doom-d1a3967194323b08227b20822acedb837e05281a.zip |
Merge from trunk.
Subversion-branch: /branches/raven-branch
Subversion-revision: 2214
Diffstat (limited to 'textscreen/txt_separator.c')
-rw-r--r-- | textscreen/txt_separator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textscreen/txt_separator.c b/textscreen/txt_separator.c index 2bf74b8f..6b779626 100644 --- a/textscreen/txt_separator.c +++ b/textscreen/txt_separator.c @@ -82,6 +82,7 @@ static void TXT_SeparatorDestructor(TXT_UNCAST_ARG(separator)) txt_widget_class_t txt_separator_class = { + TXT_NeverSelectable, TXT_SeparatorSizeCalc, TXT_SeparatorDrawer, NULL, @@ -97,7 +98,6 @@ txt_separator_t *TXT_NewSeparator(char *label) separator = malloc(sizeof(txt_separator_t)); TXT_InitWidget(separator, &txt_separator_class); - separator->widget.selectable = 0; if (label != NULL) { |