From 48945e15d6a0282958a48c6ae14a7545ff7766a5 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 18 Dec 2017 11:15:15 +0100 Subject: [PATCH] Increase transliteration selector width --- ZRCola/ZRCola.fbp | 2 +- ZRCola/zrcolagui.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ZRCola/ZRCola.fbp b/ZRCola/ZRCola.fbp index ad1b6f4..8bb7c76 100644 --- a/ZRCola/ZRCola.fbp +++ b/ZRCola/ZRCola.fbp @@ -819,7 +819,7 @@ Resizable 0 1 - 170,-1 + 250,-1 0 diff --git a/ZRCola/zrcolagui.cpp b/ZRCola/zrcolagui.cpp index 8dd6757..d02fbeb 100644 --- a/ZRCola/zrcolagui.cpp +++ b/ZRCola/zrcolagui.cpp @@ -202,7 +202,7 @@ wxZRColaFrameBase::wxZRColaFrameBase( wxWindow* parent, wxWindowID id, const wxS m_toolSendSource = m_toolbarTranslate->AddTool( wxID_SEND_SOURCE, _("Send Decomposed"), wxIcon( wxT("send_source.ico"), wxBITMAP_TYPE_ICO_RESOURCE, 24, 24 ), wxNullBitmap, wxITEM_NORMAL, _("Send Decomposed"), _("Send decomposed text to source window"), NULL ); wxArrayString m_toolTranslationSeqChoices; - m_toolTranslationSeq = new wxChoice( m_toolbarTranslate, wxID_ANY, wxDefaultPosition, wxSize( 170,-1 ), m_toolTranslationSeqChoices, 0 ); + m_toolTranslationSeq = new wxChoice( m_toolbarTranslate, wxID_ANY, wxDefaultPosition, wxSize( 250,-1 ), m_toolTranslationSeqChoices, 0 ); m_toolTranslationSeq->SetSelection( 0 ); m_toolbarTranslate->AddControl( m_toolTranslationSeq ); m_toolbarTranslate->Realize();