Would I look at the same point in the code I have above to see the solution? I like to learn
.
![Smiley :)](https://forum.solarus-games.org/en/Smileys/default/smiley.gif)
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
connect(&model, SIGNAL(title_bar_changed(QString)),
this, SLOT(update_title_bar_field()));
connect(ui.title_bar_field, SIGNAL(editingFinished()),
this, SLOT(change_title_bar_requested()));
class PlainTextEdit : public QPlainTextEdit ....
inline PlainTextEdit(QWidget* parent = nullptr) :
QPlainTextEdit(parent),
changed(false),
show_margin(false) {
setTabChangesFocus(true);
setLineWrapMode(LineWrapMode::NoWrap);
QTextCharFormat char_format = currentCharFormat();
char_format.setFontFixedPitch(true);
setCurrentCharFormat(char_format);
connect(this, SIGNAL(textChanged()), this, SLOT(handle_text_changed()));
}
Quote from: oclero on May 24, 2015, 10:52:05 AM
It makes me think we should make a little tutorial on how to use Qt Linguist to translatequeststhe quest editor, so everyone could translate it and not only developers
And if you're good at web development, your help is welcome for helping me on the website. I was thinking about creating a free and open-source Wordpress theme not only for Solarus, but that could be use for any software project, since categories are always the same (dev blog, download, FAQ, dev documentation...) . I noticed such theme does not exists for the moment (or is not free). So your help is welcome there too !