|
From: <cn...@us...> - 2020-10-28 00:32:50
|
Revision: 1083
http://sourceforge.net/p/seq/svn/1083
Author: cn187
Date: 2020-10-28 00:32:47 +0000 (Wed, 28 Oct 2020)
Log Message:
-----------
Bring opened/undocked windows to front
Modified Paths:
--------------
showeq/branches/pre_6_0_beta/src/interface.cpp
Modified: showeq/branches/pre_6_0_beta/src/interface.cpp
===================================================================
--- showeq/branches/pre_6_0_beta/src/interface.cpp 2020-10-28 00:32:23 UTC (rev 1082)
+++ showeq/branches/pre_6_0_beta/src/interface.cpp 2020-10-28 00:32:47 UTC (rev 1083)
@@ -2749,7 +2749,10 @@
if (docked)
widget->dock();
else
+ {
widget->undock();
+ widget->activateWindow();
+ }
// make the widget update it's geometry
widget->updateGeometry();
@@ -5723,6 +5726,7 @@
// make sure it's visible
m_map[i]->show();
+ m_map[i]->activateWindow();
}
void EQInterface::showMessageWindow(int i)
@@ -5772,6 +5776,8 @@
// make sure it's visible
m_messageWindow[i]->show();
+ m_messageWindow[i]->activateWindow();
+
}
void EQInterface::showSpawnList(void)
@@ -5819,6 +5825,7 @@
// make sure it's visible
m_spawnList->show();
+ m_spawnList->activateWindow();
}
void EQInterface::showSpawnList2(void)
@@ -5866,6 +5873,7 @@
// make sure it's visible
m_spawnList2->show();
+ m_spawnList2->activateWindow();
}
void EQInterface::showSpawnPointList(void)
@@ -5907,6 +5915,7 @@
// make sure it's visible
m_spawnPointList->show();
+ m_spawnPointList->activateWindow();
}
void EQInterface::showStatList(void)
@@ -5946,6 +5955,7 @@
// make sure it's visible
m_statList->show();
+ m_statList->activateWindow();
}
void EQInterface::showSkillList(void)
@@ -5985,6 +5995,7 @@
// make sure it's visible
m_skillList->show();
+ m_skillList->activateWindow();
}
void EQInterface::showSpellList(void)
@@ -6034,6 +6045,7 @@
// make sure it's visible
m_spellList->show();
+ m_spellList->activateWindow();
}
void EQInterface::showCompass(void)
@@ -6072,6 +6084,7 @@
// make sure it's visible
m_compass->show();
+ m_compass->activateWindow();
}
void EQInterface::showNetDiag()
@@ -6105,6 +6118,7 @@
// make sure it's visible
m_netDiag->show();
+ m_netDiag->activateWindow();
}
void EQInterface::showGuildList(void)
@@ -6139,6 +6153,7 @@
// make sure it's visible
m_guildListWindow->show();
+ m_guildListWindow->activateWindow();
}
void EQInterface::createFilteredSpawnLog(void)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|