From 790c861b6065f3193b97602c753596506b845107 Mon Sep 17 00:00:00 2001 From: fluxgen Date: Mon, 30 Jun 2003 15:00:32 +0000 Subject: using default key screen if no screen num was specified --- src/FbCommands.cc | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/FbCommands.cc b/src/FbCommands.cc index 820517d..6dee267 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc @@ -19,11 +19,12 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbCommands.cc,v 1.9 2003/06/22 14:16:25 fluxgen Exp $ +// $Id: FbCommands.cc,v 1.10 2003/06/30 15:00:32 fluxgen Exp $ #include "FbCommands.hh" #include "fluxbox.hh" #include "FbTk/Theme.hh" +#include "Screen.hh" #include #include @@ -43,7 +44,16 @@ void ExecuteCmd::execute() { std::string displaystring("DISPLAY="); displaystring += DisplayString(FbTk::App::instance()->display()); char intbuff[64]; - sprintf(intbuff, "%d", m_screen_num); + int screen_num = m_screen_num; + if (screen_num < 0) { + if (Fluxbox::instance()->keyScreen() == 0) + screen_num = 0; + else + screen_num = Fluxbox::instance()->keyScreen()->screenNumber(); + } + + sprintf(intbuff, "%d", screen_num); + // remove last number of display and add screen num displaystring.erase(displaystring.size()-1); displaystring += intbuff; -- cgit v0.11.2