short update

This commit is contained in:
ingvar1995 2016-08-05 22:44:01 +03:00
parent 18775ff4b2
commit 9f702afcb8
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ Toxygen is cross-platform [Tox](https://tox.chat/) client written in pure Python
[![Stars](https://img.shields.io/github/stars/xveduk/toxygen.svg?style=flat)](https://github.com/toxygen-project/toxygen/stargazers)
[![Open issues](https://img.shields.io/github/issues/xveduk/toxygen.svg?style=flat)](https://github.com/toxygen-project/toxygen/issues)
[![License](https://img.shields.io/badge/license-GPLv3-blue.svg?style=flat)](https://raw.githubusercontent.com/toxygen-project/toxygen/master/LICENSE.md)
[![Build Status](https://travis-ci.org/toxygen-project/toxygen.svg?branch=master)](https://travis-ci.org/toxygen-project/toxygen)
### [Install](/docs/install.md) - [Contribute](/docs/contributing.md) - [Plugins](/docs/plugins.md) - [Compile](/docs/compile.md) - [Contact](/docs/contact.md)

View File

@ -127,7 +127,7 @@ class MainWindow(QtGui.QMainWindow, Singleton):
self.messageEdit.setGeometry(QtCore.QRect(0, 3, 450, 55))
self.messageEdit.setObjectName("messageEdit")
font = QtGui.QFont()
font.setPointSize(10)
font.setPointSize(12)
font.setFamily(settings.Settings.get_instance()['font'])
self.messageEdit.setFont(font)