diff --git a/pyAmakIHM/classes/panelCommandes.py b/pyAmakIHM/classes/panelCommandes.py
index 81a1a72cca24b79613f0acb839aeb7cc38993f3f..601d390133e5f3e42830c1226d5861e06fb5dc17 100644
--- a/pyAmakIHM/classes/panelCommandes.py
+++ b/pyAmakIHM/classes/panelCommandes.py
@@ -30,6 +30,13 @@ class PanelCommandes(LabelFrame):
         frameBoutons = Frame(self)
         frameBoutons.pack(side='bottom',fill='x')
 
+        frameBoutonAux = Frame(self)
+        frameBoutonAux.pack(side='top')
+
+        for i in range (20):
+            Button(self, text='Aux', height=2).pack(fill='x')
+
+
         self.__slider = Scale(frameBoutons,orient='horizontal',from_=1,to=10,command=self.notifyObserverAboutScale)
         self.__slider.pack(side='bottom',fill='x')