diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-03-15 18:12:40 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-03-15 18:12:40 +0000 |
commit | a2d436b81b0528a74e5f4f699726cd091d9de700 (patch) | |
tree | dceb09e76126bbd87ee0fd4a810bfd64ca5b3e4c /Plugins/emoticons/options.cpp | |
parent | ddb7c040614e0a139a2a74bc4f8baf6fa50b3e24 (diff) |
emoticons: Added embed videos to options dialog
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@154 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/emoticons/options.cpp')
-rw-r--r-- | Plugins/emoticons/options.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Plugins/emoticons/options.cpp b/Plugins/emoticons/options.cpp index 49bf7d3..a31460a 100644 --- a/Plugins/emoticons/options.cpp +++ b/Plugins/emoticons/options.cpp @@ -39,10 +39,11 @@ static OptPageControl optionsControls[] = { { &opts.use_default_pack, CONTROL_CHECKBOX, IDC_USE_DEFAULT_PACK, "UseDefaultPack", TRUE },
{ &opts.only_replace_isolated, CONTROL_CHECKBOX, IDC_ONLY_ISOLATED, "OnlyReplaceIsolatedEmoticons", FALSE },
{ &opts.enable_custom_smileys, CONTROL_CHECKBOX, IDC_CUSTOM_SMILEYS, "EnableCustomSmileys", TRUE },
+ { &opts.embed_videos, CONTROL_CHECKBOX, IDC_VIDEO, "EmbedVideos", TRUE },
};
static UINT optionsExpertControls[] = {
- IDC_INPUT_TOO, IDC_USE_DEFAULT_PACK, IDC_ONLY_ISOLATED, IDC_CUSTOM_SMILEYS
+ IDC_INPUT_TOO, IDC_USE_DEFAULT_PACK, IDC_ONLY_ISOLATED
};
|