Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Corrige la fenêtre d'aide
Browse files Browse the repository at this point in the history
  • Loading branch information
GabDug committed Jun 28, 2017
1 parent af0ef3b commit f0ee47e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@
from PIL import Image, ImageTk

import ITwython
import auth_gui
import auth_gui, aide_gui, user_gui, options_gui
import logger_conf
import options_gui
import path_finder
import token_manager
import user_gui
from ITwython import Tweet

try:
Expand Down Expand Up @@ -333,7 +331,7 @@ def clic_utilisateur(self):
def clic_aide(self):
"""Permet d'ouvrir la fenêtre d'aide."""
logger.debug("Clic aide")
fenetre_aide = options_gui.FenetreOptions(self, self.parent.connexion.user)
fenetre_aide = aide_gui.FenetreAide(self)
fenetre_aide.grab_set()
principal.wait_window(fenetre_aide)

Expand All @@ -358,7 +356,7 @@ def __init__(self, parent, tweet: Tweet, timeline):
style.configure("Name.TLabel", foreground="white", background="#343232", font=('Segoe UI', 14))
style.configure("Date.TLabel", foreground="#cccccc", background="#343232", font=('Segoe UI', 10))
style.configure("TFrame", foreground="white", background="#343232", font=('Segoe UI', 10))
style.configure("Separateur.TFrame", foreground="white", background="white", font=('Segoe UI', 10))
style.configure("Separateur.TFrame", foreground="#cccccc", background="white", font=('Segoe UI', 10))
style.configure("TButton", font=('Segoe UI', 10))

style.configure("Sidebar.TFrame", foreground="white", background="#111111", font=('Segoe UI', 10))
Expand Down

0 comments on commit f0ee47e

Please sign in to comment.