summaryrefslogtreecommitdiff
path: root/win/Prefpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'win/Prefpage.cpp')
-rw-r--r--win/Prefpage.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/win/Prefpage.cpp b/win/Prefpage.cpp
index 9d22e67..ed40138 100644
--- a/win/Prefpage.cpp
+++ b/win/Prefpage.cpp
@@ -197,7 +197,6 @@ void CPreferencesDetail::SetOptions(DWORD dwDetail, float fLine)
m_bFast = (dwDetail & LC_DET_FAST) != 0;
m_bHidden = (dwDetail & LC_DET_HIDDEN_LINE) != 0;
m_bSolid = (dwDetail & LC_DET_BOX_FILL) != 0;
- m_bNoAlpha = (dwDetail & LC_DET_SCREENDOOR) != 0;
m_fLineWidth = fLine;
}
@@ -214,7 +213,6 @@ void CPreferencesDetail::GetOptions(DWORD* dwDetail, float* fLine)
if (m_bFast) *dwDetail |= LC_DET_FAST;
if (m_bHidden) *dwDetail |= LC_DET_HIDDEN_LINE;
if (m_bSolid) *dwDetail |= LC_DET_BOX_FILL;
- if (m_bNoAlpha) *dwDetail |= LC_DET_SCREENDOOR;
*fLine = m_fLineWidth;
}