https://bugs.kde.org/show_bug.cgi?id=428815
--- Comment #2 from fsqrt <fs...@hotmail.com> --- Thank you for your comment. I know developers are very busy, but I would appreciate it if you could go over the report again. I am not asking how to scale the layers Yes, users will think as you said, Percentage is always relative to the current size of the layer (as well as Transform tool). but it isn't. If we select the unit in '(QComboBox*)WdgLayerSize::newWidthUnit/newHeightUnit', end up with 'KisDocumentAwareSpinBoxUnitManager::getConversionFactor()'. qreal KisDocumentAwareSpinBoxUnitManager::getConversionFactor(int dim, QString psymbol) const { QString symbol = psymbol; if (symbol == "%") { //percent can be seen as vw or vh depending of the reference side in the image. if (pixDir == PIX_DIR_X) { symbol = "vw"; } else { symbol = "vh"; } } ... Unit symbol "%" will override "vw"/"vh". "vw"/"vh" refers to image size, not layer. I think this is bug. -- You are receiving this mail because: You are watching all bug changes.