summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorleo2006-02-17 04:41:45 +0000
committerleo2006-02-17 04:41:45 +0000
commit138ac61612df8323c756a9546ed8424b712bb930 (patch)
tree4327af35a484bd4bcecee6cc68ef06b5bd46b17a /win
parent60d58f37d89ecd0597dd7e279aeaef3e21495744 (diff)
Removed option for using polygon stipple for transparency.
git-svn-id: http://svn.leocad.org/trunk@480 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'win')
-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;
}