Fixed origin line handling in AREADEF
This commit is contained in:
parent
c91ec5bc48
commit
69b0494b8c
@ -478,7 +478,7 @@ MI_DROPALL "A Allen Areas "
|
||||
MI_DROPMARKED "M Markierten Areas "
|
||||
MI_DROPCURRENT "D Dieser Area hier "
|
||||
MI_NODROP "N Nichts / ESC "
|
||||
WT_CATCHAREAS " Areas einholen "
|
||||
WT_CATCHAREAS " Lesemarke auf letzte Mail der Area setzen "
|
||||
MI_CATCHALL "A Alle "
|
||||
MI_CATCHMARKED "M Markierte "
|
||||
MI_CATCHCURRENT "D Diese hier "
|
||||
|
@ -12,6 +12,9 @@ ______________________________________________________________________
|
||||
Notes for GoldED+ 1.1.5, /snapshot/
|
||||
______________________________________________________________________
|
||||
|
||||
- Origin line was not always used for the particular echo if defined
|
||||
in the AREADEF line. Fixed.
|
||||
|
||||
- Fixed header encoding in exported SOUP packets.
|
||||
|
||||
- Fixed small problem in editor when quoteline might left not painted
|
||||
|
@ -108,7 +108,7 @@ public:
|
||||
void set_aka(ftn_addr& a) { cfg.aka = a; }
|
||||
void set_originno(int o) { cfg.originno = o; }
|
||||
void set_attr(Attr& a) { cfg.attr = a; }
|
||||
void set_origin(char* o) { std::string tmp = o; cfg.setorigin(tmp); }
|
||||
void set_origin(char* o) { std::string tmp = o; cfg.originno = cfg.setorigin(tmp); }
|
||||
|
||||
void set_scan(bool s) { cfg.scan = (byte)s; }
|
||||
void set_scanexcl(bool s) { cfg.scanexcl = (byte)s; }
|
||||
|
Reference in New Issue
Block a user