mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Changed the default for "AlwaysOnTop" (ZPos) from "Normal" (0) to "On Desktop" (-2) now that On Desktop is working right with Vista / Win7.
Some minor changes to images for RainBackup and RainThemes. Using new background pattern from poiru.
This commit is contained in:
parent
befa90ce8f
commit
70ae84faca
@ -88,7 +88,7 @@ CMeterWindow::CMeterWindow(std::wstring& path, std::wstring& config, std::wstrin
|
||||
m_AnchorYPercentage = false;
|
||||
m_AnchorScreenX = 0;
|
||||
m_AnchorScreenY = 0;
|
||||
m_WindowZPosition = ZPOSITION_NORMAL;
|
||||
m_WindowZPosition = ZPOSITION_ONDESKTOP;
|
||||
m_WindowDraggable = true;
|
||||
m_WindowUpdate = 1000;
|
||||
m_TransitionUpdate = 100;
|
||||
@ -1409,7 +1409,8 @@ void CMeterWindow::ReadConfig()
|
||||
swprintf(buffer, L"%i", (int)value);
|
||||
m_WindowY = buffer;
|
||||
}
|
||||
|
||||
|
||||
// Changed to make the default "On Desktop" - JSMorley : May 11, 2010
|
||||
int zPos = parser.ReadInt(section, L"AlwaysOnTop", m_WindowZPosition);
|
||||
if (zPos == -1)
|
||||
{
|
||||
@ -1419,6 +1420,10 @@ void CMeterWindow::ReadConfig()
|
||||
{
|
||||
m_WindowZPosition = ZPOSITION_ONDESKTOP;
|
||||
}
|
||||
else if (zPos == 0)
|
||||
{
|
||||
m_WindowZPosition = ZPOSITION_NORMAL;
|
||||
}
|
||||
else if (zPos == 1)
|
||||
{
|
||||
m_WindowZPosition = ZPOSITION_ONTOP;
|
||||
@ -1429,7 +1434,7 @@ void CMeterWindow::ReadConfig()
|
||||
}
|
||||
else
|
||||
{
|
||||
m_WindowZPosition = ZPOSITION_NORMAL;
|
||||
m_WindowZPosition = ZPOSITION_ONDESKTOP;
|
||||
}
|
||||
|
||||
m_WindowDraggable = 0!=parser.ReadInt(section, L"Draggable", m_WindowDraggable);
|
||||
|
Loading…
Reference in New Issue
Block a user