diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-10-22 19:27:21 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-10-22 19:27:21 +0000 |
commit | b490d0711aa8b234048ef616d1b1a23f0407bae6 (patch) | |
tree | 541ed0c3c3ccea62b0085b320479c4c74d77615e /plugins/MirLua | |
parent | 97ab85e97b38a3a4510f02185813b9ea7e7b41d9 (diff) |
MirLua: removed default flag from m_toptoolbar
git-svn-id: http://svn.miranda-ng.org/main/trunk@15597 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua')
-rw-r--r-- | plugins/MirLua/src/m_toptoolbar.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/MirLua/src/m_toptoolbar.cpp b/plugins/MirLua/src/m_toptoolbar.cpp index 3d2e888ac5..d850c9429b 100644 --- a/plugins/MirLua/src/m_toptoolbar.cpp +++ b/plugins/MirLua/src/m_toptoolbar.cpp @@ -32,9 +32,6 @@ static TTBButton* MakeTBButton(lua_State *L) tbb->dwFlags = lua_tointeger(L, -1);
lua_pop(L, 1);
- if (!(tbb->dwFlags & TTBBF_ISLBUTTON))
- tbb->dwFlags |= TTBBF_ISLBUTTON;
-
// up state
lua_pushliteral(L, "IconUp");
lua_gettable(L, -2);
|