diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-26 15:48:52 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-26 15:48:52 +0300 |
commit | bdd417c28ee9352d886630fae60ae1c14438a0cf (patch) | |
tree | 4ba482fa09607c0df0880f6a4acb5ad3715e94e7 /plugins/HistoryPlusPlus | |
parent | 59f72fa52bd560003af3c4635f92a885d1c07dbc (diff) |
fixes #1842 (h++: fix for the order of checkboxes in options, also restored color settings for urls)
Diffstat (limited to 'plugins/HistoryPlusPlus')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_global.pas | 4 | ||||
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_options.pas | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_global.pas b/plugins/HistoryPlusPlus/hpp_global.pas index b5aca8ae37..38ae093051 100644 --- a/plugins/HistoryPlusPlus/hpp_global.pas +++ b/plugins/HistoryPlusPlus/hpp_global.pas @@ -63,10 +63,10 @@ type // be show as the last entry
TMessageType = (mtUnknown,
mtIncoming, mtOutgoing,
- mtMessage, mtFile, mtSystem,
+ mtMessage, mtUrl, mtFile, mtSystem,
mtContacts, mtStatus, mtSMTPSimple,
mtOther,
- mtNickChange,mtAvatarChange,mtWATrack,mtStatusMessage,mtVoiceCall,mtCustom, mtUrl);
+ mtNickChange,mtAvatarChange,mtWATrack,mtStatusMessage,mtVoiceCall,mtCustom);
PMessageTypes = ^TMessageTypes;
TMessageTypes = set of TMessageType;
diff --git a/plugins/HistoryPlusPlus/hpp_options.pas b/plugins/HistoryPlusPlus/hpp_options.pas index a994f97c5e..262452821d 100644 --- a/plugins/HistoryPlusPlus/hpp_options.pas +++ b/plugins/HistoryPlusPlus/hpp_options.pas @@ -156,11 +156,11 @@ const (_type: [hppFont,hppColor]; name: 'Outgoing file';
Mes: [mtFile,mtOutgoing]; style:0; size: -11; color: $000000; back: $9BEEE3),
- (_type: [hppFont,hppColor]; name: 'Unused';
- Mes: [mtIncoming]; style:0; size: -11; color: $000000; back: $F4D9CC),
+ (_type: [hppFont,hppColor]; name: 'Incoming url';
+ Mes: [mtUrl,mtIncoming]; style:0; size: -11; color: $000000; back: $F4D9CC),
- (_type: [hppFont,hppColor]; name: 'Unused';
- Mes: [mtOutgoing]; style:0; size: -11; color: $000000; back: $F4D9CC),
+ (_type: [hppFont,hppColor]; name: 'Outgoing url';
+ Mes: [mtUrl,mtOutgoing]; style:0; size: -11; color: $000000; back: $F4D9CC),
(_type: [hppFont,hppColor]; name: 'Unused';
Mes: [mtIncoming]; style:0; size: -11; color: $000000; back: $CFF4FE),
|