Fixed insensitive Bcc button in addressbook

This commit is contained in:
Melvin Hadasht 2002-01-20 16:19:37 +00:00
parent ba2b8db061
commit 239a3a9196
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2002-01-20 [melvin] 0.7.0claws18
* src/addressbook.c
Made "Bcc" sensitive when addressbook is called from
compose window (it was a Claws only bug).
2002-01-19 [alfons] 0.7.0claws17
* src/inc.c

View file

@ -8,7 +8,7 @@ MINOR_VERSION=7
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws17
EXTRA_VERSION=claws18
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -845,7 +845,9 @@ static void addressbook_button_set_sensitive(void)
if (addrbook.target_compose) {
to_sens = TRUE;
cc_sens = TRUE;
#ifndef CLAWS
if (addrbook.target_compose->use_bcc)
#endif
bcc_sens = TRUE;
}