aboutsummaryrefslogtreecommitdiff
path: root/src/RootTheme.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-28 00:38:42 (GMT)
committerfluxgen <fluxgen>2003-04-28 00:38:42 (GMT)
commit92f49bd8744037bc4812cdacde27b439b5353679 (patch)
tree401546faa2a08196d5e58f6fce156ee296288f22 /src/RootTheme.cc
parent45fff3a4b21e60c93f8c4a6fa9601f7005dac4eb (diff)
downloadfluxbox-92f49bd8744037bc4812cdacde27b439b5353679.zip
fluxbox-92f49bd8744037bc4812cdacde27b439b5353679.tar.bz2
fixed execute on right screen
Diffstat (limited to 'src/RootTheme.cc')
-rw-r--r--src/RootTheme.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/RootTheme.cc b/src/RootTheme.cc
index a652854..617cd8d 100644
--- a/src/RootTheme.cc
+++ b/src/RootTheme.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: RootTheme.cc,v 1.1 2003/04/25 10:14:54 fluxgen Exp $ 22// $Id: RootTheme.cc,v 1.2 2003/04/28 00:38:42 fluxgen Exp $
23 23
24#include "RootTheme.hh" 24#include "RootTheme.hh"
25 25
@@ -54,10 +54,10 @@ void RootTheme::reconfigTheme() {
54 // override resource root command? 54 // override resource root command?
55 if (m_screen_root_command == "") { 55 if (m_screen_root_command == "") {
56 // do root command 56 // do root command
57 FbCommands::ExecuteCmd cmd(*m_root_command); 57 FbCommands::ExecuteCmd cmd(*m_root_command, screenNum());
58 cmd.execute(); 58 cmd.execute();
59 } else { 59 } else {
60 FbCommands::ExecuteCmd cmd(m_screen_root_command); 60 FbCommands::ExecuteCmd cmd(m_screen_root_command, screenNum());
61 cmd.execute(); 61 cmd.execute();
62 } 62 }
63} 63}