Hi All,

I have noticed that in help -> Short list of add-on Prefixes and Suffixes
the text is not correctly aligned.
It is only a aesthetic problem, and do not impact the program.

I am not a skilled programmer, but adding few line in mainwindow.cpp
in function 
MainWindow::on_actionShort_list_of_add_on_prefixes_and_suffixes_triggered()
show proper columns

// Start of modify LINE 3768 of r5550 wsjtx
//      m_prefixes->setFontPointSize(10);  //removed    
          m_prefixes->setWordWrapMode (QTextOption::NoWrap);
          QFont font;
                font.setFamily("Courier");
                font.setStyleHint(QFont::Monospace);
                font.setFixedPitch(true);
                font.setPointSize(10); //as for decoded text
                m_prefixes->setFont(font);
       m_prefixes->setWindowTitle(QApplication::applicationName () + " - 
" + tr ("Prefixes"));
//      m_prefixes->setGeometry(QRect(45,50,565,450));
         m_prefixes->setGeometry(QRect(45,50,750,450));
// end of modify

73's
Sandro
IW3RAB

------------------------------------------------------------------------------
_______________________________________________
wsjt-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to