Project

General

Profile

3075_4.txt

Sergey Ivanovskiy, 05/13/2016 07:29 AM

Download (979 Bytes)

 
1
=== modified file 'src/com/goldencode/p2j/ui/client/gui/ModalWindow.java'
2
--- src/com/goldencode/p2j/ui/client/gui/ModalWindow.java	2016-05-02 14:01:07 +0000
3
+++ src/com/goldencode/p2j/ui/client/gui/ModalWindow.java	2016-05-13 10:47:59 +0000
4
@@ -46,6 +46,9 @@
5
 ** 022 HC  20160428 GUI window border drawing changed to use the Border interface mechanism.
6
 **                  Changed modal window border to be one pixel thinner.
7
 ** 023 HC  20160502 Fixed a regression in findMouseSource().
8
+** 024 SBI 20160513 Window title popup should be created with its owner in order that mouse
9
+**                  popupable_right and popapable_left widgets regions to be known by
10
+**                  the JS web client.
11
 */
12
 
13
 package com.goldencode.p2j.ui.client.gui;
14
@@ -150,6 +153,7 @@
15
       if (hasTitlebar())
16
       {
17
          windowPane.add(titleBar);
18
+         windowTitlePopup = createWindowTitlePopup(this);
19
       }
20
       windowPane.add(contentPane);
21
       add(windowPane);
22