diff --git a/toxgui b/toxgui index 27fe7bfa9..5fc40d5b1 100755 Binary files a/toxgui and b/toxgui differ diff --git a/ui/callButton/callButton.css b/ui/callButton/callButton.css index a768d7810..3f4affc8b 100644 --- a/ui/callButton/callButton.css +++ b/ui/callButton/callButton.css @@ -66,3 +66,7 @@ QPushButton#grey height: 40px; } +QPushButton:focus { + outline: none; +} + diff --git a/ui/emoteButton/emoteButton.css b/ui/emoteButton/emoteButton.css index d3a5e6ea5..8352e2ec6 100644 --- a/ui/emoteButton/emoteButton.css +++ b/ui/emoteButton/emoteButton.css @@ -15,4 +15,8 @@ QPushButton:hover QPushButton:pressed { background-image: url("ui/emoteButton/emoteButtonPressed.png"); -} \ No newline at end of file +} + +QPushButton:focus { + outline: none; +} diff --git a/ui/fileButton/fileButton.css b/ui/fileButton/fileButton.css index d8cbf5fad..0fd76d775 100644 --- a/ui/fileButton/fileButton.css +++ b/ui/fileButton/fileButton.css @@ -15,4 +15,8 @@ QPushButton:hover QPushButton:pressed { background-image: url("ui/fileButton/fileButtonPressed.png"); -} \ No newline at end of file +} + +QPushButton:focus { + outline: none; +} diff --git a/ui/sendButton/sendButton.css b/ui/sendButton/sendButton.css index 86ed60ab0..398b4236a 100644 --- a/ui/sendButton/sendButton.css +++ b/ui/sendButton/sendButton.css @@ -15,4 +15,8 @@ QPushButton:hover QPushButton:pressed { background-image: url("ui/sendButton/sendButtonPressed.png"); -} \ No newline at end of file +} + +QPushButton:focus { + outline: none; +} diff --git a/ui/videoButton/videoButton.css b/ui/videoButton/videoButton.css index 602ee94ed..cfdfb6c9e 100644 --- a/ui/videoButton/videoButton.css +++ b/ui/videoButton/videoButton.css @@ -66,3 +66,6 @@ QPushButton#grey height: 40px; } +QPushButton:focus { + outline: none; +}