|
From: <bma...@us...> - 2013-09-20 08:04:14
|
Revision: 8518
http://sourceforge.net/p/fudaa/svn/8518
Author: bmarchan
Date: 2013-09-20 08:04:11 +0000 (Fri, 20 Sep 2013)
Log Message:
-----------
Fix : Pb d'affichage des boutons du bas de fenetre sur certaines boites de dialogue.
Modified Paths:
--------------
trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/dialog/BDialogContent.java
Modified: trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/dialog/BDialogContent.java
===================================================================
--- trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/dialog/BDialogContent.java 2013-09-13 13:11:02 UTC (rev 8517)
+++ trunk/framework/ebli-common/src/main/java/org/fudaa/ebli/dialog/BDialogContent.java 2013-09-20 08:04:11 UTC (rev 8518)
@@ -34,8 +34,11 @@
*/
public class BDialogContent extends BuPanel implements ActionListener, PropertyChangeListener, KeyListener {
public static final int INSETS_SIZE = BPanneauNavigation.INSETS_SIZE;
+ // Boutons du bas
private BPanneauNavigation pnNav_;
+ // Boutons du haut
private BPanneauEditorAction pnAction_;
+ // Contient les boutons du bas et du haut en bas de fenetre
private BuPanel pnCtrl_;
protected int reponse_;
private final JComponent message_;
@@ -44,7 +47,9 @@
IDialogInterface dialog_;
boolean modal_, resizable_, closable_;
// non prive afin qu'il soit accessible depuis les inner-classes
+ // La barre de swith du dialogue.
JPanel pnSwitchMode_;
+ // Le panneau principal du dialogue.
private Container contentPane_;
private final BuCommonInterface appli_;
private boolean buildMode_;
@@ -200,7 +205,7 @@
pnAction_ = null;
pnCtrl_ = new BuPanel();
pnCtrl_.setLayout(new BorderLayout());
- add(pnCtrl_,BorderLayout.SOUTH);
+ super.add(pnCtrl_,BorderLayout.SOUTH);
if (EbliPreferences.DIALOG.TYPE == EbliPreferences.DIALOG.INTERNAL) {
setToInternalDialog();
} else {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|