Index: installer/src/custom-action/close_application.cpp |
=================================================================== |
--- a/installer/src/custom-action/close_application.cpp |
+++ b/installer/src/custom-action/close_application.cpp |
@@ -206,12 +206,12 @@ |
*/ |
std::wstring uilevel = Property( session, L"UILevel" ) ; |
bool interactive ; |
- if ( uilevel == L"5" || uilevel == L"4" ) |
+ if ( uilevel == L"5" || uilevel == L"4" || uilevel == L"3") |
{ |
interactive = true ; |
// Assert state is one of { notKnown, allow, passive, active, automatic } |
} |
- else if ( uilevel == L"3" || uilevel == L"2" ) |
+ else if (uilevel == L"2") |
sergei
2015/04/22 10:37:09
it seems not a part of this issue.
Oleksandr
2015/04/24 11:50:32
Yes, this is part of http://codereview.adblockplus
sergei
2015/04/28 14:41:15
So, do you mind commit it separately?
sergei
2015/07/28 11:11:54
So, it's still here, is it essential for this issu
|
{ |
// Assert installer is running without user interaction. |
interactive = false ; |