mirror of https://github.com/procxx/kepka.git
Remove MSVC compiler bug workaround.
It works fine in Visual Studio 2017 15.7.1.
This commit is contained in:
parent
4bcd1e3c59
commit
694e8cd19f
|
@ -248,21 +248,11 @@ Cover::Cover(
|
||||||
|
|
||||||
void Cover::setupChildGeometry() {
|
void Cover::setupChildGeometry() {
|
||||||
using namespace rpl::mappers;
|
using namespace rpl::mappers;
|
||||||
//
|
|
||||||
// Visual Studio 2017 15.5.1 internal compiler error here.
|
|
||||||
// See https://developercommunity.visualstudio.com/content/problem/165155/ice-regression-in-1551-after-successfull-build-in.html
|
|
||||||
//
|
|
||||||
//rpl::combine(
|
|
||||||
// toggleShownValue(),
|
|
||||||
// widthValue(),
|
|
||||||
// _2
|
|
||||||
//) | rpl::map([](bool shown, int width) {
|
|
||||||
rpl::combine(
|
rpl::combine(
|
||||||
toggleShownValue(),
|
toggleShownValue(),
|
||||||
widthValue()
|
widthValue(),
|
||||||
) | rpl::map([](bool shown, int width) {
|
_2
|
||||||
return width;
|
) | rpl::start_with_next([this](int newWidth) {
|
||||||
}) | rpl::start_with_next([this](int newWidth) {
|
|
||||||
_userpic->moveToLeft(
|
_userpic->moveToLeft(
|
||||||
st::infoProfilePhotoLeft,
|
st::infoProfilePhotoLeft,
|
||||||
st::infoProfilePhotoTop,
|
st::infoProfilePhotoTop,
|
||||||
|
@ -453,21 +443,12 @@ void SharedMediaCover::createLabel() {
|
||||||
Lang::Viewer(lng_profile_shared_media) | ToUpperValue(),
|
Lang::Viewer(lng_profile_shared_media) | ToUpperValue(),
|
||||||
st::infoBlockHeaderLabel);
|
st::infoBlockHeaderLabel);
|
||||||
label->setAttribute(Qt::WA_TransparentForMouseEvents);
|
label->setAttribute(Qt::WA_TransparentForMouseEvents);
|
||||||
//
|
|
||||||
// Visual Studio 2017 15.5.1 internal compiler error here.
|
|
||||||
// See https://developercommunity.visualstudio.com/content/problem/165155/ice-regression-in-1551-after-successfull-build-in.html
|
|
||||||
//
|
|
||||||
//rpl::combine(
|
|
||||||
// toggleShownValue(),
|
|
||||||
// widthValue(),
|
|
||||||
// _2
|
|
||||||
//) | rpl::map([](bool shown, int width) {
|
|
||||||
rpl::combine(
|
rpl::combine(
|
||||||
toggleShownValue(),
|
toggleShownValue(),
|
||||||
widthValue()
|
widthValue(),
|
||||||
) | rpl::map([](bool shown, int width) {
|
_2
|
||||||
return width;
|
) | rpl::start_with_next([this, weak = label.data()](int newWidth) {
|
||||||
}) | rpl::start_with_next([this, weak = label.data()](int newWidth) {
|
|
||||||
auto availableWidth = newWidth
|
auto availableWidth = newWidth
|
||||||
- st::infoBlockHeaderPosition.x()
|
- st::infoBlockHeaderPosition.x()
|
||||||
- st::infoSharedMediaButton.padding.right()
|
- st::infoSharedMediaButton.padding.right()
|
||||||
|
|
Loading…
Reference in New Issue