mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-16 13:14:51 -04:00
--User changes
-Add Ctrl+g shortcut for generating a sequence. --Bug fixes -Fix indendation for variations because of type icon. -Fix bug when duplicating flame where the new flame wasn't being properly selected. -Fix bug where clearing a flame was changing size and quality when it shouldn't have. -Fix bug where reading an Xml palette was failing on linux. --Code changes -No longer pad string with null terminator in ReadFile() because std::string already does it.
This commit is contained in:
@ -71,6 +71,7 @@ void FractoriumEmberController<T>::FillSummary()
|
||||
const auto vp = 4;
|
||||
const auto vlen = 7;
|
||||
const auto pc = 'f';
|
||||
const auto iconSize = 20;
|
||||
const auto forceFinal = m_Fractorium->HaveFinal();
|
||||
const auto total = m_Ember.TotalXformCount(forceFinal);
|
||||
const auto table = m_Fractorium->ui.SummaryTable;
|
||||
@ -163,7 +164,7 @@ void FractoriumEmberController<T>::FillSummary()
|
||||
vitem->setText(0, QString::fromStdString(var->Name()));
|
||||
vitem->setText(1, QLocale::system().toString(var->m_Weight, pc, vp).rightJustified(vlen, ' '));
|
||||
vitem->setFlags(draggable);
|
||||
auto qi = MakeVariationIcon(var);
|
||||
auto qi = MakeVariationIcon(var, iconSize);
|
||||
vitem->setIcon(0, qi);
|
||||
|
||||
if (const auto parVar = dynamic_cast<ParametricVariation<T>*>(var))
|
||||
|
Reference in New Issue
Block a user