Skip to content

Commit 8c83314

Browse files
committed
Help-Window now gets focus
1 parent 2365bb3 commit 8c83314

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ Fixed:
170170
one. (Ralf Schlatterbeck)
171171
- issue2550892 (translation error of priority in locale de) Thanks
172172
Martin Thomas Swaton for reporting. (Bernhard Reiter)
173+
- Help-Window now gets focus, this prevents the case that help doesn't
174+
work because an old help-window is below the main window.
175+
(Ralf Schlatterbeck)
173176

174177

175178
2013-07-06: 1.5.0

roundup/cgi/templating.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2758,6 +2758,7 @@ def base_javascript(self):
27582758
27592759
function help_window(helpurl, width, height) {
27602760
HelpWin = window.open('%s' + helpurl, 'RoundupHelpWindow', 'scrollbars=yes,resizable=yes,toolbar=no,height='+height+',width='+width);
2761+
HelpWin.focus ()
27612762
}
27622763
</script>
27632764
"""%self.base

0 commit comments

Comments
 (0)