mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
11 lines
285 B
C++
11 lines
285 B
C++
#include "even_odd_expression_cell_with_margin.h"
|
|
|
|
namespace Regression {
|
|
|
|
void EvenOddExpressionCellWithMargin::layoutSubviews() {
|
|
KDRect boundsThis = bounds();
|
|
m_expressionView.setFrame(KDRect(boundsThis.topLeft(), boundsThis.width() - k_rightMargin, boundsThis.height()));
|
|
}
|
|
|
|
}
|