Skip to content

Commit

Permalink
Fixed support for dual-monitor arrangements
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunaphied committed Jun 6, 2016
1 parent 7a64ae6 commit 9fdfddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chronolapse.py
Expand Up @@ -607,7 +607,7 @@ def takeScreenshot(self, rect = None, timestamp=False):

try:
# use two monitors if checked and available
if (self.getConfig('screenshotdualmonitor')
if (self.getConfig('screenshot_dual_monitor')
and wx.Display_GetCount() > 0):
second = wx.Display(1)
x2, y2, width2, height2 = second.GetGeometry()
Expand Down Expand Up @@ -2041,4 +2041,4 @@ def set_icon_action_text(self, minimized):
chronoframe = ChronoFrame(None, -1, "")
app.SetTopWindow(chronoframe)
chronoframe.doShow()
app.MainLoop()
app.MainLoop()

0 comments on commit 9fdfddc

Please sign in to comment.